blink once slowly at the start

pico-v0.39
alanbjohnston 3 years ago committed by GitHub
parent 15eae0fefe
commit a5499bf61e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -182,14 +182,14 @@ void setup() {
pinMode(LED_PIN, OUTPUT); // Set the pin as output 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 digitalWrite(LED_PIN, LOW); // Turn on
delay (250); // Wait 0.1 sec delay (500); // Wait 0.1 sec
digitalWrite(LED_PIN, HIGH); // Turn off digitalWrite(LED_PIN, HIGH); // Turn off
delay(250); // Wait 0.1 sec delay(500); // Wait 0.1 sec
digitalWrite(LED_PIN, LOW); // Turn on // digitalWrite(LED_PIN, LOW); // Turn on
delay (250); // Wait 0.1 sec // delay (250); // Wait 0.1 sec
digitalWrite(LED_PIN, HIGH); // Turn off // digitalWrite(LED_PIN, HIGH); // Turn off
// delay(250); // Wait 0.1 sec // delay(250); // Wait 0.1 sec
// digitalWrite(LED_PIN, LOW); // Turn on // digitalWrite(LED_PIN, LOW); // Turn on
// delay (100); // Wait 0.1 sec // delay (100); // Wait 0.1 sec

Loading…
Cancel
Save

Powered by TurnKey Linux.