You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to connect my pc to the wifi AP too so I can install over the network, I do not want to connect the ESP to my router but instead just switch my PC wifi over to the ESP AP while installing.
Whenever I try this I get a message that the IP is already in use and I have to set my address manually to IP 10.1.1.3 subnet 255.255.255.0 and gateway/router to 10.1.1.1.
I am guessing there is no handler for giving out multiple IP addresses at once.
(I also read somewhere that the ESP goes to sleep after a while, as its only needed when initializing the hack, but for my use case this should be disabled, anyone know where to turn this off in the code?)
The text was updated successfully, but these errors were encountered:
//ESP sleep after x minutes
boolean espSleep = false;
int TIME2SLEEP = 30; // minutes
Found this part on line 76-78, so i guess the sleep part is figured out, now all i need is to figure out how to get some type of DHCP to work for multiple clients
I want to connect my pc to the wifi AP too so I can install over the network, I do not want to connect the ESP to my router but instead just switch my PC wifi over to the ESP AP while installing.
Whenever I try this I get a message that the IP is already in use and I have to set my address manually to IP 10.1.1.3 subnet 255.255.255.0 and gateway/router to 10.1.1.1.
I am guessing there is no handler for giving out multiple IP addresses at once.
(I also read somewhere that the ESP goes to sleep after a while, as its only needed when initializing the hack, but for my use case this should be disabled, anyone know where to turn this off in the code?)
The text was updated successfully, but these errors were encountered: