Skip to content

Instantly share code, notes, and snippets.

@lol97
Created August 4, 2018 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lol97/ac9908a0cdce9bb16c5a3762c1a62a02 to your computer and use it in GitHub Desktop.
Save lol97/ac9908a0cdce9bb16c5a3762c1a62a02 to your computer and use it in GitHub Desktop.
Simple Serial Println Arduino
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello");
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment