I have the esp8266 connected to my computer. I have connected it to my network and it works. The problem is that I dont know how to request this document http://arduino.cc/asciilogo.txt .
Command looks like so:
AT+CIPSTART="TCP","arduino.cc",80
OK
Linked
But I dont know what to do next, maybe a GET, but how?
I tried this but it doesnt work:
AT+CIPSTART="TCP","arduino.cc",80
OK
Linked
AT+CIPSEND=42
> GET /asciilogo.txt HTTP/1.1\r\nHost: arduino.cc\r\n
wrong syntax
ERROR
SEND OK
OK
Unlink
I want that document to be shown in my serial monitor (using the one with arduino software) over which i speak to the esp from the computer.
EDIT: Basicly I just want to do this with esp8266 http://arduino.cc/en/Tutorial/HttpClient
Thank you