Tod Kurt
Tod Kurt
@partyexpress, this library is for CircuitPython on microcontrollers. If you want to use Python to access USB HID on Raspberry Pis (or other unixes), check out https://pypi.org/project/hidapi/
Hi! As for how to read battery voltage level on the Feather RP2040, that's pretty particular to that board. You will need to do some wiring [as mentioned here in...
If you want to have a point in your code that pauses until you do some action, you could add an `input("press RETURN to continue")` in your code and then...
I'm unclear what you're looking for. Can't you Ctrl-C to stop the code, then do "import othercode" to run a different program in `othercode.py`? Or do you want to do...
Yep, I just use a standard text editor (Emacs or Sublime Text, depending) to edit my CircuitPython. I didn't grow up using IDEs so I'm not much of a user...
> Please a tutorial with midi timing clock 🙏https://docs.circuitpython.org/projects/midi/en/latest/api.html#adafruit_midi.timing_clock.TimingClock CircuitPython isn't really fast enough to handle MIDI clock, but you can see an attempt here: https://github.com/todbot/picostepseq/blob/1dd4e8f9bf26a4e42e25cc4d55d806cd80b6176c/circuitpython/picostepseq/code.py#L76
Cheers, that's awesome thanks!
Thanks for the update. For anyone who cares, here's how I've been solving what I needed to do: ``` var conf_defaults = require('./config-defaults.json'); var conf_file = './config.json'; if( ! fs.existsSync(conf_file)...
Which zip did you download? There is a pre-compiled version in the ["Releases" section](https://github.com/todbot/mac-hid-dump/releases).
Hi @sergy8612, I've never tried inserting node-hid into another node project like that. I'm not sure if it would work. I would suggest rather to create a new directory someplace...