From a5499bf61e1ccaa5bcd429992e3a9356b3fdc678 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 22 Feb 2023 21:21:15 -0500 Subject: [PATCH] blink once slowly at the start --- .../esp32-cam-send-jpeg-serial.ino | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino b/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino index c009bcf3..62212ee1 100644 --- a/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino +++ b/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino @@ -182,14 +182,14 @@ void setup() { pinMode(LED_PIN, OUTPUT); // Set the pin as output - Serial.println("\nBlink twice slowly"); + Serial.println("\nBlink once slowly"); digitalWrite(LED_PIN, LOW); // Turn on - delay (250); // Wait 0.1 sec + delay (500); // Wait 0.1 sec digitalWrite(LED_PIN, HIGH); // Turn off - delay(250); // Wait 0.1 sec - digitalWrite(LED_PIN, LOW); // Turn on - delay (250); // Wait 0.1 sec - digitalWrite(LED_PIN, HIGH); // Turn off + delay(500); // Wait 0.1 sec +// digitalWrite(LED_PIN, LOW); // Turn on +// delay (250); // Wait 0.1 sec +// digitalWrite(LED_PIN, HIGH); // Turn off // delay(250); // Wait 0.1 sec // digitalWrite(LED_PIN, LOW); // Turn on // delay (100); // Wait 0.1 sec