AbleSet 3.0.0-beta.3

Hey @GOODSHOW,

That’s already possible using the /devices/showPage OSC command (docs). For example, if you’d like to open the mixer view on all devices, you could send /devices/showPage all mixer.

You might already be able to build a basic button that displays the status of your audio interfaces and allows you to toggle between them, but adding the status indicator itself, that allows you to open the detail view of interfaces, is a good idea.

That’s something I’d love to see as well, and it’s already on my todo list. My plan is to offer OSC endpoints that allow you to send MIDI to any device. For example, sending a note could be triggered like this:

/midi/note "Output Port" 1 C3 127 100

With 1 being the channel, C3 being the note, 127 being the velocity, and 100 being an optional delay between the note on and note off commands in milliseconds.

In addition, sending CC and PC could also be interesting:

/midi/cc "Output Port" 1 64 100

With 1 being the channel, 64 being the CC number, and 100 being the CC value. For PC, this would be:

/midi/pc "Output Port" 1 15

With 1 being the channel, and 15 being the program number.

Does this sound good to you?

I’m looking forward to your feedback! :slight_smile:

2 Likes