Is it possible to use a joystick as a midi controller for navigating the redbox in ableton? #1016
Replies: 1 comment 2 replies
-
There's no existing code for this, but it shouldn't be too hard to do. If you just have an analog joystick, you could use the FilteredAnalog class to read the X and Y values, and using some if-statements with appropriate thresholds, you can get a basic implementation working quite easily. If you want more advanced features such as moving while the joystick is being held to one side, or moving faster the farther you move the joystick, this will require a bit more code, but nothing too complicated. Then you'll also need to figure out which MIDI messages you need to send for Ableton to move the box around. This is not something I can help you with, you'll have to dig into the Ableton documentation. A quick Google search reveals some discussions about it on https://forum.ableton.com/viewtopic.php?f=4&t=183459, but I have never tried anything like it myself. |
Beta Was this translation helpful? Give feedback.
-
Hi,
Thank you for your great library. I'am looking for a way to use a joystick to control the redbox in ableton. So when i flick the joystick down, the redbox goes down, when i flick it to the left, it goes to the left.
I know how to get this into a script for ableton. But I can't get the joystick code to work and give me the CC messages.
Is there existing code?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions