Created
June 18, 2018 12:53
-
-
Save lol97/4783ada4543e38591a5016f3cb0a6800 to your computer and use it in GitHub Desktop.
Test code for print serial monitor and variabel
This file contains hidden or 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
| 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