Replies: 2 comments
-
|
Esp32 wifi wps(push button) can be used to authenticate with a router and save the password as a test file. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Today I dig into provided examples and tried to adapt it for Bruce... And found some caveat. The Bruce firmware uses really outdated ESP-IDF version (4.4.7). So it lacks of full WPS functionality. There is The main problem In typedef struct {
wps_type_t wps_type;
wps_factory_information_t factory_info;
} esp_wps_config_t;If we check docs for the 5.0+ version we will find that it suddenly appears: typedef struct {
wps_type_t wps_type;
wps_factory_information_t factory_info;
char pin[PIN_LEN]
} esp_wps_config_t; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
It will be nice to grab wifi password using wps.
https://www.esp32.com/viewtopic.php?t=27004
https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/examples/WPS/WPS.ino
Beta Was this translation helpful? Give feedback.
All reactions