Skip to content

Instantly share code, notes, and snippets.

@chriscummings
Created January 14, 2024 07:05
Show Gist options
  • Save chriscummings/e717959ec238dc4e88fae97f42424618 to your computer and use it in GitHub Desktop.
Save chriscummings/e717959ec238dc4e88fae97f42424618 to your computer and use it in GitHub Desktop.
testSketch.ino
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT);
}
void loop() {
Serial.println("Hello");
digitalWrite(13, HIGH);
delay(500);
digitalWrite(13, LOW);
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment