- Mon Apr 11, 2016 10:33 am
#45295
atexit8 wrote:But apparently, the ArduinoESP framework as you call it uses the Arduino IDE for programming the ESP8266.
Yes ! To create your own firmware.
atexit8 wrote:If I want to use the ESP8266 simply as a wifi module for the Arduino Uno, then I can only send AT commands.
Yes and No !
Yes, if you don't want to write your own ESP firmware and only want to program the UNO.
No, if you write your own ESP firmware, you can still have an UNO attached, and define your own protocol (other than AT) to establish communication between the ESP and the UNO. For example, the UNO can send a command thru serial to the ESP, such as "getntp", the ESP firmware execute the task and return the received NTP time to the UNO.
Doing the same thing using AT firmware would be much more troubles, therefore more headaches...