Monogram cc integration - hardware control of software parameters
I'm aware that Soundflow supports midi cc (that's fantastic!), but I was wondering if it would make things quicker/easier for users if we could have an integration with the Monogram USB controllers.
They used to be Palette Gear, rebranded as Monogram. I have the Creative Console and Orbiter module, they work great for me.
You can set them up with midi, but if we had a deeper integration almost like what Soundflow does with Stream Deck, that could be useful. You could create a virtual device in Soundflow that's auto-connected when the device is active, and each of the parameter controls is automatically mapped to Soundflow so that it can be routed to a command, or to send midi cc, or whatever.
There is an app that runs when the device is active, which you can use to manually set up hardware control of software. Not sure if this would be needed if Soundflow handled it. However the app has various integrations (Adobe etc).
- Dustin Harris @Dustin_Harris
I not familiar with Monogram gear, but if you create a script and assign it to be trigger via a midi trigger (and select your device, which data types you want Sound Flow to respond to, etc), this script will log the output. I'll have to dig into some documentation on how m0 represents event type (note on, off, CC, etc) but m1 and m2 are parameters (m1: note on/off, CC number, etc), (m2: note velocity, cc value, etc)
let m = event.trigger.midiBytes; let m0 = m[0], m1 = m[1], m2 = m[2]; log(`m0: ${m0}, m1: ${m1}, m2: ${m2}`);