Last active
March 25, 2016 13:49
-
-
Save pastcompute/7a23a07910af72709b5a to your computer and use it in GitHub Desktop.
Platformio serial hello world
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
#include "Arduino.h" | |
void setup() | |
{ | |
Serial.begin(115200); | |
Serial.println("Hello, world"); | |
} | |
void loop() | |
{ | |
Serial.println("Loop"); | |
delay(5000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment