Skip to content

Instantly share code, notes, and snippets.

@lol97
Created June 18, 2018 12:53
Show Gist options
  • Select an option

  • Save lol97/4783ada4543e38591a5016f3cb0a6800 to your computer and use it in GitHub Desktop.

Select an option

Save lol97/4783ada4543e38591a5016f3cb0a6800 to your computer and use it in GitHub Desktop.
Test code for print serial monitor and variabel
void setup()
{
Serial.begin(9600);
Serial.println("Check Arduino with Sublime");
delay(1000);
}
int i = 0;
void loop()
{
Serial.println(i);
i+=1;
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment