boochow

Results 34 comments of boochow

Yuichi Akagawa's USBH_MIDI library supports USB-MIDI for USB host mode. https://github.com/YuuichiAkagawa/USBH_MIDI I think this library is a good start point to implement your idea. (This library is not for Pico...

rppicomidi is implementing MIDI on USB host mode. This project interfaces DIN5 MIDI IN/OUT and USB MIDI so that you can connect a MIDI device that only has a USB...

Please refer to tftbmp.py. It is an example of showing a small bitmap file on the screen.

Font files are in this repository: https://github.com/GuyCarver/MicroPython/tree/master/lib

@h2g2guy thank you for your comment! I agree with you that OSC_PARAM should set the parameters to the appropriate value when a preset program is loaded. It is a completely...

@dukesrg Yes, the same source, different results. That is the problem. I have been using NTS-1 and got a minilogue xd today and found this issue. I suppose it may...

The same settings for different hardware cause different results. I couldn't clarify where the problem actually is, but anyway, I had to write different codes for different hardware to get...

Thank you for testing. However, it is not a typo. I saw both targeting pitch and targeting shape seemed to have the same problem: NTS-1 sends an OSC module LFO...

> NTS-1: `q31_to_f32(p->shape_lfo)` > to > minilogue xd: ` (q31_to_f32(p->shape_lfo) / 2 + 0.5)`. I found that the code above still has an issue. When the LFO intensity is zero,...

As mentioned in the README.md, this code is based on [GuyCarver's ST7735.py](https://github.com/GuyCarver/MicroPython/blob/master/lib/ST7735.py). Because GuyCarver's code doesn't have any license, I'm afraid I can't add a license to this repository.