Hi,
Has anyone perhaps tried to speed up the connection to the router when the ESP8266 is woken up?
Are there any "faster" libraries.
From what I've read, instead of:
.
it is better to use
.
I did not notice any difference.
There is a very cool article:
Link .
1. at first try to connect to the router via the stored data (bssid, channel etc.); this will not work the first time, because there is nothing in the memory yet,
2. try the classic connection via ssid and passwd
3. succeeds
4. write bssid, channel etc. to memory
5. On the next boot, read the settings from memory again and this time it should be much faster
Has anyone done anything like this?
I want to connect to mqtt as fast as possible after resetting the ESP-01
Greetings,
mm
Has anyone perhaps tried to speed up the connection to the router when the ESP8266 is woken up?
Are there any "faster" libraries.
From what I've read, instead of:
WiFi.begin( ssid, password );
it is better to use
WiFi.begin(ssid, password,channel, bssid);
I did not notice any difference.
There is a very cool article:
Link .
1. at first try to connect to the router via the stored data (bssid, channel etc.); this will not work the first time, because there is nothing in the memory yet,
2. try the classic connection via ssid and passwd
3. succeeds
4. write bssid, channel etc. to memory
5. On the next boot, read the settings from memory again and this time it should be much faster
Has anyone done anything like this?
I want to connect to mqtt as fast as possible after resetting the ESP-01
Greetings,
mm