I want to start sending sensor data to a webpage with the ESP8266. I've been looking for libraries for 2 days no and cant seem to get anything to work besides the simple AT commands. Could someone steer me in the right direction?
I want to start sending sensor data to a webpage with the ESP8266. I've been looking for libraries for 2 days no and cant seem to get anything to work besides the simple AT commands. Could someone steer me in the right direction?
your question is not very clear... AT commands are one way to send data.
if you just want the basics, then this should do:
http://allaboutee.com/2014/12/30/esp8266-and-arduino-webserver/
A very detailed reference is this:
you can do more advanced stuff like modifying the esp8266 firmware directly
How to Directly Program an Inexpensive ESP8266 WiFi Module | Hackaday
or program an Arduino remotely via the esp8266
Programming an Arduino over WiFi with the ESP8266 | Hackaday
Hope these help,
Manolis
Same problem. I got to know what AT commands does using Putty. But I am not getting how to send a data, say, analog values of temperature sensor to Webpage.
Same problem. I got to know what AT commands does using Putty. But I am not getting how to send a data, say, analog values of temperature sensor to Webpage.
You can use TCP and GET/POST to send data from arduino using ESP8266. I have a tutorial around it using AT commands you can check that out for reference.