Update 'pointlights/pointlights.ino'

fix an accidental deletion
This commit is contained in:
rra 2021-09-02 14:40:10 +02:00
parent f820422ec7
commit 349924a550

View File

@ -8,6 +8,7 @@ unsigned long currentMillis;
int brightness = 0; // our main variable for setting the brightness of the LED int brightness = 0; // our main variable for setting the brightness of the LED
float velocity = 1.0; // the speed at which we change the brightness. float velocity = 1.0; // the speed at which we change the brightness.
int ledPin = 9; // we use pin 9 for PWM int ledPin = 9; // we use pin 9 for PWM
int p = 0; // use to keep track how often we plot
int plotFrequency = 2; // how often we plot, every Nth time. int plotFrequency = 2; // how often we plot, every Nth time.
void setup() { void setup() {