Code not needed

This commit is contained in:
mrcory
2022-10-29 15:28:00 -04:00
parent d7eeb79f73
commit e1ccd5b247
-12
View File
@@ -1,13 +1 @@
//Extra Functions
CRGB HOLD_ARRAY[50];
void REVERSE_ARRAY2(int _ORIG_START, int _ORIG_NUM) {
for (int i = 0 ; i < _ORIG_NUM ; i++) {
HOLD_ARRAY[i] = leds2[i + _ORIG_START];
}
for (int i = 0 ; i < _ORIG_NUM ; i++) {
leds2[_ORIG_NUM - i] = HOLD_ARRAY[i];
}
}