Dance is now spinner

This commit is contained in:
Neale Pickett 2022-07-18 07:43:19 -06:00
parent d92008ed8b
commit 83dd19c68c
1 changed files with 4 additions and 4 deletions

View File

@ -199,10 +199,10 @@ void netget(int count=30) {
} }
} }
const int dance_pos[4] = {27, 28, 36, 35}; const int spinner_pos[4] = {27, 28, 36, 35};
void dance(int count=32) { void spinner(int count=32) {
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
int pos = dance_pos[i % 4]; int pos = spinner_pos[i % 4];
grid[pos] = CRGB::OliveDrab; grid[pos] = CRGB::OliveDrab;
FastLED.show(); FastLED.show();
pause(125); pause(125);
@ -227,7 +227,7 @@ void loop() {
} else if (p.Pick(8)) { } else if (p.Pick(8)) {
cm5(); cm5();
} else if (p.Pick(10)) { } else if (p.Pick(10)) {
dance(); spinner();
} else if (p.Pick(4) || !connected()) { } else if (p.Pick(4) || !connected()) {
netget(); netget();
} }