-->
Page 1 of 1

correct sintax of at commands

PostPosted: Thu Jan 11, 2018 3:30 pm
by Aster
hello

i set up a esp8266 module with at commands to control a gopro camera

AT+CWMODE=1
AT+CWJAP="Saiken-GoPro","password" (yes my password is "password")
AT+CIPMUX=0
AT+CIPSTART="TCP","10.5.5.9",8080

until here I think that all works ok

but here cames the problem

i have to send this: "http://10.5.5.9/bacpac/PW?t=password&p=%00"

but really i am not sure on how to do it

i put
AT+CIPSEND=x
where x is the lenght of the string + 2 (\n\r)
and then the request

but this doesn't work

do i have to put also GET at the beginning?
or HTTP/1.0 at the end?

i am at the begin with the esp and wifi modules!