So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By Aster
#73066 hello,

I am trying to control a wifi camera (gopro) with a esp8266 (ESP01), there are a few working (as far as i know) codes around the web, like: https://github.com/synfinatic/GoProCont ... ontrol.ino or http://euerdesign.de/2015/12/28/ultralo ... ro-remote/

but these obviuosly have to be flashed on the board.
I would like to do something similar with AT commands, before i try this, is it always possible?

the commands i should send are these: https://github.com/KonradIT/goprowifiha ... ommands.md
but for now i am not sure how i should do all of this

I am following this: https://room-15.github.io/blog/2015/03/ ... reference/
User avatar
By Aster
#73068 okkk i am near
i have connection with the camera:

AT+CWMODE=1
AT+CWJAP="Saiken-GoPro","password"
AT+CIPMUX=0
AT+CIPSTART="TCP","10.5.5.9",80 // or 8080 for GoPro 3+

now i should send the request
i guess i have to do:

AT+CIPSEND=x
where x is the number of bytes in the request

and then the request
which should be: http://10.5.5.9/bacpac/SH?t=password&p=%01

but it is not working :|