Start a wifi scan after saving station details (#2315)

This commit is contained in:
Jesse Hills 2021-09-15 19:00:51 +12:00 committed by GitHub
parent 19014331d8
commit 0ea77de98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -244,6 +244,8 @@ void WiFiComponent::save_wifi_sta(const std::string &ssid, const std::string &pa
sta.set_ssid(ssid);
sta.set_password(password);
this->set_sta(sta);
this->start_scanning();
}
void WiFiComponent::start_connecting(const WiFiAP &ap, bool two) {