Need help with FastLED feedback #825
Unanswered
Kmanggaard
asked this question in
Q&A
Replies: 2 comments
-
You can use It has a uint8_t swap_led3_and_led7(uint8_t index) {
if (index == 3)
index = 7;
else if (index == 7)
index = 3;
return index;
}
CCRangeFastLED<...> midileds {...};
void setup() {
// ...
midileds.setLEDIndexPermuter(swap_led3_and_led7);
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hello @tttapa do you think this méthod could be used to show encoder value with ws218 led strip? |
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 all,
My DAW sends button LED information like this: CC number for index and CC value for color.
Using the examples I can get feedback on note input, with the color determined by index.
How can I change the example code to listen for CC?
Also, can someone give an example of how to permute the LED index array?
Beta Was this translation helpful? Give feedback.
All reactions