Just received my first ESP8266 wifi module with some excitement. However I've been unable to fully communicate with it. I have connected the module to my computer via a usb to serial cable and I'm power the module via a separate power supply (3.3v).
After powering the module up I receive the following information (via PuTTY or and Arduino serial monitor window):
[Vendor:www.ai-thinker.com Version:0.9.2.4]
ready
I have tried sending various AT commands e.g.
AT+RST
But I get no response. Using ctrl+m and ctrl+j in putty didn't help either.
Please see my youtube video if its helpful: https://www.youtube.com/watch?v=RvasOuHuWDc
3 Answers 3
Thanks for all your help. The solution was modify the line ending option at the bottom of the Arduino serial console to send both CR and LF. Still not got PuTTY configured but have something to test now. Thanks :)
I recently started "playing" with this module, and there are a few things to keep in mind:
- the module base baud rate is 115200, don ́t waste your time on 9600
- it requires CR+LF to accept commands
- read the documentations (http://bbs.espressif.com/viewtopic.php?f=67&t=225)
- experiment with more than one tool, like Arduino IDE and Esplorer
- also check the resources here: http://www.electrodragon.com/w/Category:ESP8266
And of course, have fun!
This worked for me:
https://gist.github.com/cabo/ce6358406f8175041813
You can enable/disable crlf in screen comfortably.
Both NL & CR
setting in Arduino serial monitor? \$\endgroup\$