Second Preset for Tone Wheel Organ

Forum for the Fantom-0 workstation/synthesizer
jmacnash
Posts: 12
Joined: 17:56, 2 August 2022

Re: Second Preset for Tone Wheel Organ

Post by jmacnash »

https://drive.google.com/drive/folders/ ... sp=sharing

Looks like the attachments were stripped. Scene and sequence are at the link above.
xp30
Posts: 364
Joined: 21:10, 25 May 2022

Re: Second Preset for Tone Wheel Organ

Post by xp30 »

I already mentioned this idea in a different thread: A DIY MIDI controller based on a Raspberry Pi Pico, similar to the many DIY keyboard macro controller projects out there. An example with lots of photos is https://www.tomshardware.com/how-to/ras ... tream-deck. It consists of two parts: the hardware and the software. I can't say much about the hardware, however, it looks easy enough if you know someone with a 3D printer and basic soldering skills. I have experimented with the software, and it would be very similar to the software for the above keyboard macro controller (https://github.com/novaspirit/PiPicoMac ... in/code.py), with the only difference that you would replace the keyboard send statements with MIDI send statements:

Code: Select all

message = bytes((0xb1, 0x46, 0x7f, 0xb1, 0x47, 0x7f, 0xb1, 0x48, 0x7f, 0xb1, 0x49, 0x00, 0xb1, 0x4a, 0x00, 0xb1, 0x4b, 0x00, 0xb1, 0x4c, 0x00, 0xb1, 0x4d, 0x00, 0xb1, 0x4e, 0x00, ))
usb_midi.ports[1].write(message, len(message))
I have just tested it with my (beginnger) Raspberry Pi Pico board, and it works.
Post Reply