Create chaos
This commit is contained in:
parent
eae5ab055e
commit
562d22e29e
21
School/vg2/borg/demos/chaos
Normal file
21
School/vg2/borg/demos/chaos
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#include <FastLED.h>
|
||||||
|
#include <borg.h>
|
||||||
|
|
||||||
|
#define NUM_LEDS 54
|
||||||
|
#define DATA_PIN 7
|
||||||
|
|
||||||
|
CRGB leds[NUM_LEDS];
|
||||||
|
|
||||||
|
void setup()
|
||||||
|
{
|
||||||
|
FastLED.addLeds<PL9823, DATA_PIN>(leds, NUM_LEDS);
|
||||||
|
|
||||||
|
randomSeed(analogRead(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop()
|
||||||
|
{
|
||||||
|
int select = random(0, NUM_LEDS);
|
||||||
|
leds[select] = (CRGB) random(1, 0x1000000);
|
||||||
|
FastLED.show();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user