Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
sarwadenj opened this issue Nov 26, 2016 · 3 comments

Comments

@sarwadenj
Copy link

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.

@cnlohr
Copy link
Owner

cnlohr commented Nov 27, 2016

You would need to connect to the access point, and then have it scan for your home router, and join that network. From there, it currently has the IP address of the target computer hard-coded to 192.168.1.113.

	pUdpServer->proto.udp->remote_ip[0] = 192;
	pUdpServer->proto.udp->remote_ip[1] = 168;
	pUdpServer->proto.udp->remote_ip[2] = 1;
        pUdpServer->proto.udp->remote_ip[3] = 113;

Set your computer to that, make sure the ESPs connect and then you can go to town :-D

@sarwadenj
Copy link
Author

Target computer's ip address is 192.168.1.113. All ESP's creating access point, sending and receiving packet's on other ESP's after make burn.
When I compile and run toprecorder.c i'm not receiving data. Computer is set to 192.168.1.113. From where i need to connect to access point? How should i make setup.

@cnlohr
Copy link
Owner

cnlohr commented Mar 15, 2017

That is quite odd. You may need to use wireshark to debug what's going on and see if the packets are getting on the network but something else may be wrong, i.e. formation of the UDP packets, etc. As I recall, things were super janky there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants