cnlohr / esp82xx

Useful ESP8266 C Environment
Other
289 stars 107 forks source link

access points created but how to make further setup....i'm new to esp8266 #43

Closed sarwadenj closed 7 years ago

sarwadenj commented 7 years ago

Hi, how should i make setup at router side. Actually executable toprecorder and process made but i don't know how to made setup at router side.

After "make burn" and "make netburn" it creates its own WiFi Access Point but i am new to esp8266 i don't know how to move forward to get packets.

Thanks.

con-f-use commented 7 years ago

You can join an existing WLAN by connecting to the AP once, going to 192.168.4.1 in your browser and then scanning and joining the network over the WebGUI. The ESP will then connect to the network you chose instead of opening its own IP (provided the existing WLAN is reachable). You can toggle pins over the WebUI or by faking the respective requests using another program. You can also send raw request like echo -ne "eeeeeeeeeeeee" | nc 192.168.LLL.LLL 7878. See the issue_command(...) function in fwsrc/commonservices.c for what is out there. For more than that, you will most likely have to look at the source code and change it. You should be more specific for better advice.