Okay, so I want to put up the order in which I’m working on things so I can get some feedback about which features are most important to you and what this order should be.
This order is pretty loose because my working style is way too ADHD to follow a list like this. I usually just get really excited about adding some particular functionality and then not leave my house until it’s done.
Your input here could help tip the scales about which feature I hyperfocus on next.
So here’s the tentative order that’s subject to change based on the results of this poll:
-
Flashing the Arduino from the Jumperless (low level stuff) {done!!!}
- You’ll still need to go to “Download Compiled Firmware” in Wokwi and drag that file into your Terminal window. But then the Jumperless will reset the Arduino and load whatever code you’re simulating in Wokwi.
-
TUI interface for voltage and current sensing {done, in a rudimentary way}
- Because the desktop app will probably take a while, until then, I should make an interface to show voltages and currents in the existing bridge app. In the code, it’s hella easy, just calls to analogRead() for the 4 ADCs and INA0.getCurrent() for the current sensors. (In Wokwi, ADC0-3 are Logic Analyser channels 0-3. I don’t remember what I set the current sensors as but it’s written in some guide somewhere.)
-
Board scanning and probing
-
This will quickly go through the whole breadboard and connect each row to an ADC or something, read it, and then disconnect that row and move onto the next one. Then you multiplex the whole board and act as if it was reading every row at the same-ish time.
-
This would be the first step toward autodetecting components placed on the breadboard. And you could attach a probe to the GPIOs and make connections by poking 2 rows without a computer. Among other things.
-
-
Queuing projects and swapping between them with a single command
- If your using this for modular synth stuff, you could have a bunch of Wokwi projects open and cycle through them to get functionality kinda similar to this thing. Erica Synths - Desktop Matrix Mixer
-
Automatically pulling and compiling the firmware from your Wokwi project.
- This is harder than it sounds, but once it works, it’ll be hella slick. So you’ll be able to write your code in Wokwi and it’ll be flashed to the Arduino anytime you hit Save. The hard part with this it that it needs library management, so it has to find and download all the libraries you used in the code before it can be compiled with Arduino-CLI.
-
Standalone desktop app
- This honestly should be first but it’s really hard to pull off for someone with my skillset and biases. I barely ever trust Arduino libraries because I feel like I need to know exactly how things are implemented to use them, so I usually just use them as a reference to write my own library that just does what I need it to. And GUI frameworks are like 100 levels of abstraction above that, so every time I try one, I find that it’s a complete mess and look for something else. If anyone wants to start just the bare bones of one in a framework of their choosing, I will totally finish it just because I’d be committed to using that particular framework.
I’ve noticed that these are basically in order of easiest to hardest, which is probably good because I tend to fix things as I work on unrelated features. Anyway, here’s the poll. You may vote on as many as you want.
- Flashing the Arduino with 1 USB cable
- TUI for voltage and current sensing
- Board scanning and probing
- Queuing multiple Wokwi projects
- Pulling and compiling Wokwi sketches on save
- Standalone desktop app