Comment on ESP32 WiFi SuperstitionsparentComments−Vurdentium1yI'm not sure we're understanding each other so just to be clear, my suggestion is to change from this (pseudo) C: wifi_connection_config_t config = { .ssid = "my_home_wifi", .password = "secret123", /* implicitly initialised to default: .method = CONNECT_TO_THE_FIRST_AP_THAT_RESPONDS, */ } to wifi_connection_config_t config = { .ssid = "my_home_wifi", .password = "secret123", /* explicitly initialise: */ .method = CONNECT_TO_THE_AP_WITH_THE_STRONGEST_RSSI, } It's that simple.−RockRobotRock1yI think I understand you. That functionality doesn't exist in ESP32 Arduino tool chain without more work/more code. Their hobby level perspective is valuable to other hobby level engineers who want a solution.
Comments
I'm not sure we're understanding each other so just to be clear, my suggestion is to change from this (pseudo) C:
to It's that simple.I think I understand you. That functionality doesn't exist in ESP32 Arduino tool chain without more work/more code. Their hobby level perspective is valuable to other hobby level engineers who want a solution.