Closed
Description
I am using Arduino 1.6.5 along with ESP8266MOD (16 Pin).
Connections are: RX-TX, TX-RX, GND-GND, VCC,GPIO0 and CH_PD- 3.3v arduino..
no error in compilation of the code.
But while uploading a warning and an error occurs:
warning: espcomm_sync failed
error: espcomm_open failed
Tried changing RX and TX, and also GPIO0 while ploading kept it low. still the same errors..
code:
void setup() {
Serial.begin(9600);
Serial.begin(9600);
delay(1000);
}
void loop() {
if(Serial.available()){
byte b = Serial.read();
Serial.write(b);
}
if(Serial.available()) {
byte c = Serial.read();
Serial.write(c);
}
}
Please help me out!!!
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.