Skip to content

Instantly share code, notes, and snippets.

@surinoel
Created July 9, 2019 05:17
Show Gist options
  • Save surinoel/6eca057188d58b767244d8b1f46abe28 to your computer and use it in GitHub Desktop.
Save surinoel/6eca057188d58b767244d8b1f46abe28 to your computer and use it in GitHub Desktop.
int d1 = 1, d2 = 2;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print(d1);
Serial.print(" ");
Serial.print(d2);
Serial.println(" ");
delay(20);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment