Replies: 1 comment
-
|
I think it's easiest to change these lines: Control-Surface-Motor-Fader/Motor-Controller/main.cpp Lines 286 to 287 in 9b20111 You could use something like this: // Check if any of the fader knobs is touched
bool touched = false;
for (uint8_t i = 0; i < Config::num_faders; ++i)
touched |= touch.read(i); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Pieter!
Sometimes I need to move more than one fader at the same time, so I tried to modify your code to get this... I found this lines:
So I changed to some like this:
But, it doesn't happens what I want... Do you have some suggestion about what should I do?
Beta Was this translation helpful? Give feedback.
All reactions