set LED to output at start

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

@ -179,6 +179,8 @@ void setup() {
delay(1000);
Serial.begin(115200);
pinMode(LED_PIN, OUTPUT); // Set the pin as output
Serial.println("\nBlink three times");
digitalWrite(LED_PIN, LOW); // Turn on

Loading…
Cancel
Save

Powered by TurnKey Linux.