Skip to content

Instantly share code, notes, and snippets.

@LosantGists
Created April 12, 2016 15:08
Show Gist options
  • Save LosantGists/2176c63cf2ab9f0c064d6a6f713c895b to your computer and use it in GitHub Desktop.
Save LosantGists/2176c63cf2ab9f0c064d6a6f713c895b to your computer and use it in GitHub Desktop.
getting-started-with-platformio-esp8266
#include <Arduino.h>
void setup() {
Serial.begin(9600);
}
void loop() {
delay(1000);
Serial.println("Hello World!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment