Last active
August 26, 2021 13:22
-
-
Save JeremySCook/008b35ee55e922a2ff94b72ccb0e8a3a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//modified from info/code found here: https://wiki.seeedstudio.com/Seeeduino-XIAO-by-Nanase/ | |
void setup() { | |
pinMode(LED_BUILTIN, OUTPUT); | |
pinMode(PIN_LED2, OUTPUT); | |
pinMode(PIN_LED3, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(LED_BUILTIN, HIGH); | |
delay(500); | |
digitalWrite(PIN_LED2, HIGH); | |
delay(500); | |
digitalWrite(PIN_LED3, HIGH); | |
delay(500); | |
digitalWrite(LED_BUILTIN, LOW); | |
delay(500); | |
digitalWrite(PIN_LED2, LOW); | |
delay(500); | |
digitalWrite(PIN_LED3, LOW); | |
delay(500); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment