From c7288bb5f5a53ec839dac523557f9e27adc6ea10 Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Tue, 22 Sep 2020 15:24:19 -0500 Subject: [PATCH] add some variables to play with... --- src/main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6f4a590..d3441ca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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); } \ No newline at end of file