I am using an ESP-03 with AT Version: 0.21.0.0 & SDK Version: 0.9.5
I am trying to give my web browser a HTML response.
I set up the ESP using the following AT commands...
AT+CWMODE=3
AT+CWJAP="SSID","PASSWORD"
AT+CIPMUX=1
AT+CIPSERVER=1,80
I can then type it's local IP address into my browser and I get a bunch of data streaming into the ESP! Woooo!
+IPD,0,331:GET / HTTP/1.1
Host: 192.168.4.1
Connection: keep-alive
Accept-Encoding: gzip, deflate
ect...
BUT I then want to send a confirmation back, like "OK".
So, as per Google/Youtube, I use the following AT commands...
AT+CIPSEND=0,109
I get a ">" symbol as I expected and then I type in the HTML code...
<!doctype html>\ <html>\ <head>\ <title>Confirmation</title>\ </head>\ <body>\ <H1>OK</H1>\ </body>\ </html>
I get the response below and then close the connection...
busy s...
SEND OK
AT+CIPCLOSE=0
0,CLOSED
But I don't get anything displayed in the web browser!!!!!
PLEASE TELL ME WHAT I'M DOING WRONG!?!
Many thanks in advance,
George