Skip to content

Instantly share code, notes, and snippets.

@HectorTorres
Created May 28, 2017 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HectorTorres/045325cec915b3ba637e13b9f7c3dcd7 to your computer and use it in GitHub Desktop.
Save HectorTorres/045325cec915b3ba637e13b9f7c3dcd7 to your computer and use it in GitHub Desktop.
esp8266-arduino.c
void setup()
{ pinMode(2, OUTPUT);
}
void loop()
{digitalWrite(2,HIGH);
delay(1000);
digitalWrite(2,LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment