Arduino due and ESP8266-01 Am I missing something?
Posted: Sun May 16, 2021 7:32 am
I have an Arduino due and an ESP8266-01 hooked up as follows:
Arduino Due-------ESP8266-01
3.3volt out-------->VCC and CH_PD
GND--------------->GND
TX1---------------->RXD
RX1---------------->TXD
Then I use some really simple code on Arduino to get the two to talk together:
Trouble is that this just seems to echo the characters which I send through the Arduino IDE serial monitor back: when I enter AT+GMR, that is what I read back from the ESP8266, but nothing else. I.e. I get no response from the ESP8266. Although, when I do a reset of the ESP8266 by pulling RST to GND and then relieve the reset, the ESP8266 seems to send a couple of lines of nonsense to the Arduino
May-be the trivial question first: This is a brandnew ESP8266-01, I did not put any code in it myself. Can I expect that the module comes with code in it already which can interpret AT commands, or do I have to put that code in myself first?
Arduino Due-------ESP8266-01
3.3volt out-------->VCC and CH_PD
GND--------------->GND
TX1---------------->RXD
RX1---------------->TXD
Then I use some really simple code on Arduino to get the two to talk together:
Code: Select all
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial1.begin(115200);
delay(1000);
Serial.write("Ready\n\r");
}
void loop() {
// put your main code here, to run repeatedly:
// check if a character is available from ESP8266 to read and if yes, read it and write out to computer
if(Serial1.available()) {
byte in = Serial1.read();
Serial.write(in);
}
// check if a character is available from computer to read and if yes, read it and write out to ESP8266
if(Serial.available()) {
byte out = Serial.read();
Serial1.write(out);
}
}
Trouble is that this just seems to echo the characters which I send through the Arduino IDE serial monitor back: when I enter AT+GMR, that is what I read back from the ESP8266, but nothing else. I.e. I get no response from the ESP8266. Although, when I do a reset of the ESP8266 by pulling RST to GND and then relieve the reset, the ESP8266 seems to send a couple of lines of nonsense to the Arduino
May-be the trivial question first: This is a brandnew ESP8266-01, I did not put any code in it myself. Can I expect that the module comes with code in it already which can interpret AT commands, or do I have to put that code in myself first?