Create Gamecube.ino
This commit is contained in:
parent
c7891163fe
commit
5b2cd6fa8a
79
School/vg2/borg/demos/Gamecube.ino
Normal file
79
School/vg2/borg/demos/Gamecube.ino
Normal file
@ -0,0 +1,79 @@
|
||||
#include <FastLED.h>
|
||||
#include <borg.h>
|
||||
|
||||
#define NUM_LEDS 54
|
||||
#define DATA_PIN 7
|
||||
|
||||
#define COLOR (CRGB) 0x0000FF
|
||||
|
||||
CRGB leds[NUM_LEDS];
|
||||
|
||||
LEDSelect head;
|
||||
|
||||
void setup() {
|
||||
FastLED.addLeds<PL9823, DATA_PIN>(leds, NUM_LEDS);
|
||||
initMap();
|
||||
FastLED.clear();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
setColor({4, 1, 0}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({4, 0, 0}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({4, 0, 1}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({4, 0, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
|
||||
setColor({0, 0, 0}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({0, 0, 1}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({0, 0, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({0, 0, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({0, 1, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({0, 2, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
|
||||
setColor({1, 0, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({1, 1, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({1, 2, 2}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({1, 2, 1}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({1, 2, 0}, COLOR, leds);
|
||||
FastLED.show();
|
||||
delay(280);
|
||||
setColor({1, 1, 0}, COLOR, leds);
|
||||
FastLED.show();
|
||||
|
||||
delay(320);
|
||||
|
||||
setColor({1, 0, 0}, COLOR, leds);
|
||||
setColor({4, 2, 2}, COLOR, leds);
|
||||
setColor({0, 2, 0}, COLOR, leds);
|
||||
FastLED.show();
|
||||
|
||||
delay(2000);
|
||||
FastLED.clear();
|
||||
}
|
Loading…
Reference in New Issue
Block a user