Error when loading Arduino blink program
Posted: Wed Jul 01, 2015 3:39 am
I designed and assembled an ESP8266 [url]https://www.oshpark.com/shared_projects/0FfXBo62//url]breakout[/url] board and firrst trid node mcu bootloader. This seemed to be successful but I couldn't get anywhere with luaLoader so I tried the Arduino IDE. I think I hooked it up the same and correct way but when I try to upload a blink program I get a serial read failure:
I can't seem to copy the verbose serial output but it says warning: espcomm_sync failed and error: espcomm_open failed.
Any idea what I might be doing wrong?
Code: Select all
/* LED Blink, Teensyduino Tutorial #1
http://www.pjrc.com/teensy/tutorial.html
This example code is in the public domain.
*/
#define myLed 16
void setup() {
Serial.begin(38400);
pinMode(myLed, OUTPUT);
digitalWrite(myLed, HIGH);
}
// the loop() methor runs over and over again,
// as long as the board has power
void loop() {
// if (Serial.available() > 0) {
// Serial.write(Serial.read());
// }
digitalWrite(myLed, !digitalRead(myLed));
delay(1000);
}
I can't seem to copy the verbose serial output but it says warning: espcomm_sync failed and error: espcomm_open failed.
Any idea what I might be doing wrong?