//Check if I'm connected to the correct wifi ... chk!
T+CWJAP?
+CWJAP:"M42"
OK
//Check if status is fine ... chk!
AT+CIPSTATUS
STATUS:2
OK
//Check if I really do have an IP address ... chk! (the address is pingable from other machines on the same SSID)
AT+CIFSR
192.168.1.118
OK
//Start connection
AT+CIPSTART="TCP","192.168.1.100",80
OK
Linked
//Prepare to send the simplest of all URLs ...
AT+CIPSEND=35
//">" is returned, so we type the URL
> GET http://192.168.1.100 HTTP/1.0
wrong syntax
ERROR
SEND OK
OK
Apart from the confusing 'error' and 'ok', whatever URL I construct, with the full HTTP context, without, with GET with PUT, with whatever came up to my mind, it keeps failing. It seems to work for everybody who's websites I have been reading, but it doesn't work here, even when exactly copying code from others.
Am I overlooking something evident?