add some variables to play with...

This commit is contained in:
Joe Tretter
2020-09-22 15:24:19 -05:00
parent e38199bc28
commit c7288bb5f5

View File

@@ -6,11 +6,13 @@ void setup()
pinMode(LED_BUILTIN, OUTPUT);
}
int a = 1000;
int b = 100;
void loop()
{
// put your main code here, to run repeatedly:
digitalWrite(LED_BUILTIN, HIGH);
delay(100);
delay(a);
digitalWrite(LED_BUILTIN, LOW);
delay(200);
delay(b);
}