Created
June 2, 2015 00:18
-
-
Save sabas1080/0dc5218b9f210f860841 to your computer and use it in GitHub Desktop.
Sketch para cargar firmware ESP8266 por medio de Arduino
This file contains 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
//sketch para cargar firmware a ESP8266 por medio de Arduino | |
//Esquematico en | |
int ch_pd = 3; | |
int io0 = 2; | |
void setup() { | |
pinMode(ch_pd, OUTPUT); | |
pinMode(io0, OUTPUT); | |
digitalWrite(io0,LOW); | |
digitalWrite(ch_pd, LOW); | |
delay(1000); | |
digitalWrite(ch_pd, HIGH); | |
} | |
void loop() | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment