-->
Page 2 of 2

Re: esp8266 connection with arduino

PostPosted: Fri Oct 09, 2015 3:12 am
by bbx10node
The Huzzah ships with Lua firmware, not AT firmware so it will not respond to AT commands. Try 9600 bits/sec 8N1 then press the reset button. For details see the tutorial.

https://learn.adafruit.com/adafruit-huz ... t/overview

Re: esp8266 connection with arduino

PostPosted: Thu Oct 15, 2015 2:10 pm
by Jose Castillo
I Follow the instructions, and use this link for the ESP8266 Board Package http://arduino.esp8266.com/stable/packa ... index.json

Cpu Frequency 80Mhz
Upload speed 115200

i did the blink test and it worked,
i also used the Connecting via WiFi test and it worked.

but the AT commands are not working, I know that if i write AT i should get OK, but i'm not getting anything from neither 9600 bits/sec baud or 115200 baud.
I'm also using the option of both NL and CR

what did you mean with 8N1?

capture3.png

Re: esp8266 connection with arduino

PostPosted: Thu Oct 15, 2015 5:34 pm
by martinayotte
When uploading a sketch compile in ArduinoESP, there is no more any AT command shell.
The AT command shell is a firmware by itself written by Espressif.
If you wish to have both worlds, you need to write an ArduinoESP sketch which provide your own Serial port parsing which can simulate AT commands.
But what is you goal exactly ? maybe you don't need AT commands at all ...
Please, detail your project ...

Re: esp8266 connection with arduino

PostPosted: Tue Oct 20, 2015 3:26 pm
by Jose Castillo
oh, yeah i don't need to have AT commands i just wanted to know how it worked. Well my project is to send Data with the Huzzah esp8266 to a MySQL Database. To start of i would just need to send a simple text. Like a name or something.