Sending message between 2 esp8266
Posted: Sat Feb 18, 2017 9:31 am
I'm trying to send a simple message ("Hello") from one ESP8266 module to another using http://rancidbacon.com/files/kiwicon8/ESP8266_WiFi_Module_Quick_Start_Guide_v_1.0.4.pdf
The sender AT commands are:
The receiver AT commands are:
The CIPSTART command fails and I can't go any further, what should I do?
The sender AT commands are:
Code: Select all
AT+CIPMUX=1 // Is used to start a multi-IP connection
AT+CIPSERVER=1,80// Configure ESP8266 as server
The receiver AT commands are:
Code: Select all
AT+CIPMUX=1
AT+CWJAP="ESP1 SSID", "ESP1 PASSWORD" //Connects to sender successfully
AT+CIPSTART=1,"TCP","192.168.4.1",80 //Establish TCP connection
The CIPSTART command fails and I can't go any further, what should I do?