Skip to content

Instantly share code, notes, and snippets.

@elktros
Created December 13, 2017 11:04
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 elktros/94dce0c69e138a862ddae29c5084d3a4 to your computer and use it in GitHub Desktop.
Save elktros/94dce0c69e138a862ddae29c5084d3a4 to your computer and use it in GitHub Desktop.
Interfacing ESP8266 WiFi Module with Arduino and uploading program to ESP8266 using Arduino IDE.
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