Skip to content

Instantly share code, notes, and snippets.

@pastcompute
Last active March 25, 2016 13:49
Show Gist options
  • Save pastcompute/7a23a07910af72709b5a to your computer and use it in GitHub Desktop.
Save pastcompute/7a23a07910af72709b5a to your computer and use it in GitHub Desktop.
Platformio serial hello world
#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