I tried to get this ESP shield working with my Arduino Uno, but with no success yet. I have connected the shield's TX with the Arduino's digital pin 2 and the RX with pin 3 and configured them in my sketch.
SoftwareSerial esp8266(2,3);
void setup() {
Serial.begin(9600);
esp8266.begin(9600);
}
If I send an AT command, nothing returns. I got it to return something pressing the reset button on the ESP, but it returned gibberish:
)R⸮⸮К⸮Ҹ⸮⸮⸮⸮ښ⸮⸮⸮N֕⸮2%C⸮\⸮×⸮⸮rz⸮⸮⸮H⸮
I am making use of the shield seen at this blog. I would really like to get this working. What can I try more?