4 #if defined(USE_ESP32) || defined(USE_ESP_IDF) 8 #include <user_interface.h> 22 #ifdef USE_CAPTIVE_PORTAL 33 static const char *
const TAG =
"wifi";
38 ESP_LOGCONFIG(TAG,
"Setting up WiFi...");
51 ESP_LOGCONFIG(TAG,
"Starting WiFi...");
60 if (this->pref_.load(&save)) {
61 ESP_LOGD(TAG,
"Loaded saved wifi settings: %s", save.ssid);
65 sta.set_password(save.password);
72 ESP_LOGV(TAG,
"Setting Output Power Option failed!");
76 ESP_LOGV(TAG,
"Setting Power Save Option failed!");
85 }
else if (this->
has_ap()) {
88 ESP_LOGV(TAG,
"Setting Output Power Option failed!");
90 #ifdef USE_CAPTIVE_PORTAL 109 const uint32_t now =
millis();
147 ESP_LOGW(TAG,
"WiFi Connection lost... Reconnecting...");
165 ESP_LOGI(TAG,
"Starting fallback AP!");
167 #ifdef USE_CAPTIVE_PORTAL 186 ESP_LOGE(TAG,
"Can't connect to WiFi, rebooting...");
198 #ifdef USE_WIFI_11KV_SUPPORT 229 if (name.length() > 32) {
231 name.erase(name.begin() + 25, name.end() - 7);
233 name = name.substr(0, 32);
239 ESP_LOGCONFIG(TAG,
"Setting up AP...");
241 ESP_LOGCONFIG(TAG,
" AP SSID: '%s'", this->
ap_.
get_ssid().c_str());
242 ESP_LOGCONFIG(TAG,
" AP Password: '%s'", this->
ap_.
get_password().c_str());
245 ESP_LOGCONFIG(TAG,
" AP Static IP: '%s'", manual.static_ip.str().c_str());
246 ESP_LOGCONFIG(TAG,
" AP Gateway: '%s'", manual.gateway.str().c_str());
247 ESP_LOGCONFIG(TAG,
" AP Subnet: '%s'", manual.subnet.str().c_str());
251 ESP_LOGCONFIG(TAG,
" IP Address: %s", this->
wifi_soft_ap_ip().str().c_str());
273 strncpy(save.ssid, ssid.c_str(),
sizeof(save.ssid));
274 strncpy(save.password, password.c_str(),
sizeof(save.password));
281 sta.set_password(password);
286 ESP_LOGI(TAG,
"WiFi Connecting to '%s'...", ap.
get_ssid().c_str());
287 #ifdef ESPHOME_LOG_HAS_VERBOSE 288 ESP_LOGV(TAG,
"Connection Params:");
289 ESP_LOGV(TAG,
" SSID: '%s'", ap.
get_ssid().c_str());
292 ESP_LOGV(TAG,
" BSSID: %02X:%02X:%02X:%02X:%02X:%02X", b[0], b[1], b[2], b[3], b[4], b[5]);
294 ESP_LOGV(TAG,
" BSSID: Not Set");
297 #ifdef USE_WIFI_WPA2_EAP 298 if (ap.
get_eap().has_value()) {
299 ESP_LOGV(TAG,
" WPA2 Enterprise authentication configured:");
301 ESP_LOGV(TAG,
" Identity: " LOG_SECRET(
"'%s'"), eap_config.
identity.c_str());
302 ESP_LOGV(TAG,
" Username: " LOG_SECRET(
"'%s'"), eap_config.
username.c_str());
303 ESP_LOGV(TAG,
" Password: " LOG_SECRET(
"'%s'"), eap_config.
password.c_str());
304 bool ca_cert_present = eap_config.
ca_cert !=
nullptr && strlen(eap_config.
ca_cert);
307 ESP_LOGV(TAG,
" CA Cert: %s", ca_cert_present ?
"present" :
"not present");
308 ESP_LOGV(TAG,
" Client Cert: %s", client_cert_present ?
"present" :
"not present");
309 ESP_LOGV(TAG,
" Client Key: %s", client_key_present ?
"present" :
"not present");
312 ESP_LOGV(TAG,
" Password: " LOG_SECRET(
"'%s'"), ap.
get_password().c_str());
313 #ifdef USE_WIFI_WPA2_EAP 319 ESP_LOGV(TAG,
" Channel: Not Set");
323 ESP_LOGV(TAG,
" Manual IP: Static IP=%s Gateway=%s Subnet=%s DNS1=%s DNS2=%s", m.
static_ip.
str().c_str(),
326 ESP_LOGV(TAG,
" Using DHCP IP");
328 ESP_LOGV(TAG,
" Hidden: %s", YESNO(ap.
get_hidden()));
332 ESP_LOGE(TAG,
"wifi_sta_connect_ failed!");
355 return LOG_STR(
"\033[0;32m" 361 }
else if (rssi >= -65) {
362 return LOG_STR(
"\033[0;33m" 369 }
else if (rssi >= -85) {
370 return LOG_STR(
"\033[0;33m" 378 return LOG_STR(
"\033[0;31m" 393 ESP_LOGCONFIG(TAG,
" WiFi is disabled!");
396 ESP_LOGCONFIG(TAG,
" SSID: " LOG_SECRET(
"'%s'"),
wifi_ssid().c_str());
397 ESP_LOGCONFIG(TAG,
" IP Address: %s",
wifi_sta_ip().str().c_str());
398 ESP_LOGCONFIG(TAG,
" BSSID: " LOG_SECRET(
"%02X:%02X:%02X:%02X:%02X:%02X"), bssid[0], bssid[1], bssid[2], bssid[3],
400 ESP_LOGCONFIG(TAG,
" Hostname: '%s'",
App.
get_name().c_str());
402 ESP_LOGCONFIG(TAG,
" Signal strength: %d dB %s", rssi, LOG_STR_ARG(
get_signal_bars(rssi)));
409 ESP_LOGCONFIG(TAG,
" DNS1: %s",
wifi_dns_ip_(0).str().c_str());
410 ESP_LOGCONFIG(TAG,
" DNS2: %s",
wifi_dns_ip_(1).str().c_str());
411 #ifdef USE_WIFI_11KV_SUPPORT 412 ESP_LOGCONFIG(TAG,
" BTM: %s", this->
btm_ ?
"enabled" :
"disabled");
413 ESP_LOGCONFIG(TAG,
" RRM: %s", this->
rrm_ ?
"enabled" :
"disabled");
421 ESP_LOGD(TAG,
"Enabling WIFI...");
431 ESP_LOGD(TAG,
"Disabling WIFI...");
441 ESP_LOGD(TAG,
"Starting scan...");
449 ESP_LOGE(TAG,
"Scan timeout!");
456 ESP_LOGD(TAG,
"Found networks:");
458 ESP_LOGD(TAG,
" No network found!");
464 for (
auto &ap : this->
sta_) {
465 if (res.matches(ap)) {
466 res.set_matches(
true);
476 std::stable_sort(this->scan_result_.begin(), this->scan_result_.end(),
493 for (
auto &res : this->scan_result_) {
495 auto bssid = res.get_bssid();
496 sprintf(bssid_s,
"%02X:%02X:%02X:%02X:%02X:%02X", bssid[0], bssid[1], bssid[2], bssid[3], bssid[4], bssid[5]);
498 if (res.get_matches()) {
499 ESP_LOGI(TAG,
"- '%s' %s" LOG_SECRET(
"(%s) ")
"%s", res.get_ssid().c_str(),
500 res.get_is_hidden() ?
"(HIDDEN) " :
"", bssid_s, LOG_STR_ARG(
get_signal_bars(res.get_rssi())));
501 ESP_LOGD(TAG,
" Channel: %u", res.get_channel());
502 ESP_LOGD(TAG,
" RSSI: %d dB", res.get_rssi());
504 ESP_LOGD(TAG,
"- " LOG_SECRET(
"'%s'")
" " LOG_SECRET(
"(%s) ")
"%s", res.get_ssid().c_str(), bssid_s,
509 if (!this->scan_result_[0].get_matches()) {
510 ESP_LOGW(TAG,
"No matching network found!");
517 for (
auto &config : this->
sta_) {
519 if (!scan_res.
matches(config)) {
523 if (config.get_hidden()) {
526 connect_params.
set_ssid(config.get_ssid());
541 #ifdef USE_WIFI_WPA2_EAP 543 connect_params.
set_eap(config.get_eap());
559 ESP_LOGCONFIG(TAG,
"WiFi:");
568 ESP_LOGW(TAG,
"Incomplete connection.");
573 ESP_LOGI(TAG,
"WiFi Connected!");
577 #ifdef USE_CAPTIVE_PORTAL 582 ESP_LOGD(TAG,
"Disabling AP...");
598 ESP_LOGW(TAG,
"Timeout while connecting to WiFi.");
604 ESP_LOGW(TAG,
"Error while connecting to network.");
614 ESP_LOGW(TAG,
"WiFi network can not be found anymore.");
620 ESP_LOGW(TAG,
"Connecting to WiFi network failed. Are the credentials wrong?");
625 ESP_LOGW(TAG,
"WiFi Unknown connection status %d", (
int)
status);
640 ESP_LOGW(TAG,
"Restarting WiFi adapter...");
676 sprintf(buf,
"%02X:%02X:%02X:%02X:%02X:%02X", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
680 #ifdef USE_CAPTIVE_PORTAL 698 #ifdef USE_WIFI_WPA2_EAP 707 #ifdef USE_WIFI_WPA2_EAP 717 ssid_(
std::move(ssid)),
720 with_auth_(with_auth),
721 is_hidden_(is_hidden) {}
728 }
else if (!config.
get_ssid().empty()) {
739 #ifdef USE_WIFI_WPA2_EAP
Nothing has been initialized yet.
This component is responsible for managing the ESP WiFi interface.
WiFiSTAConnectStatus wifi_sta_connect_status_()
const std::string & get_ssid() const
void check_scanning_finished()
std::array< uint8_t, 6 > bssid_t
const optional< EAPAuth > & get_eap() const
static std::string format_mac_addr(const uint8_t mac[6])
const std::string & get_password() const
WiFiPowerSaveMode power_save_
WiFiComponentState state_
bool get_is_hidden() const
void save_wifi_sta(const std::string &ssid, const std::string &password)
network::IPAddress wifi_dns_ip_(int num)
void set_sta_priority(const bssid_t bssid, float priority)
bool wifi_mode_(optional< bool > sta, optional< bool > ap)
const optional< bssid_t > & get_bssid() const
bool wifi_apply_output_power_(float output_power)
void add_sta(const WiFiAP &ap)
uint8_t get_channel() const
WiFi is in STA(+AP) mode and currently connecting to an AP a second time.
void print_connect_params_()
WiFi is in STA(+AP) mode and successfully connected.
network::IPAddress wifi_subnet_mask_()
network::IPAddress static_ip
bool get_with_auth() const
void set_ap(const WiFiAP &ap)
Setup an Access Point that should be created if no connection to a station can be made...
network::IPAddress get_ip_address()
uint32_t IRAM_ATTR HOT millis()
const bssid_t & get_bssid() const
void set_channel(optional< uint8_t > channel)
void trigger(Ts... x)
Inform the parent automation that the event has triggered.
network::IPAddress gateway
bool is_esp32_improv_active_()
bool wifi_apply_hostname_()
void start_connecting(const WiFiAP &ap, bool two)
bool error_from_callback_
WiFiComponent()
Construct a WiFiComponent.
CaptivePortal * global_captive_portal
void set_passive_scan(bool passive)
std::vector< WiFiScanResult > scan_result_
WiFi is in STA-only mode and currently scanning for APs.
Struct for setting static IPs in WiFiComponent.
void set_power_save_mode(WiFiPowerSaveMode power_save)
bool wifi_start_ap_(const WiFiAP &ap)
network::IPAddress dns1
The first DNS server. 0.0.0.0 for default.
WiFi is in STA(+AP) mode and currently connecting to an AP.
bool has_sta_priority(const bssid_t &bssid)
const optional< ManualIP > & get_manual_ip() const
ESPPreferences * global_preferences
const optional< uint8_t > & get_channel() const
void status_clear_warning()
WiFi is in cooldown mode because something went wrong, scanning will begin after a short period of ti...
void set_ssid(const std::string &ssid)
bool wifi_apply_power_save_()
void check_connecting_finished()
Application App
Global storage of Application pointer - only one Application can exist.
bool matches(const WiFiAP &config)
WiFiComponent * global_wifi_component
const std::string & get_name() const
Get the name of this Application set by pre_setup().
void status_set_warning()
network::IPAddress get_dns_address(int num)
void set_reboot_timeout(uint32_t reboot_timeout)
bool is_captive_portal_active_()
void set_matches(bool matches)
bool is_name_add_mac_suffix_enabled() const
network::IPAddress wifi_soft_ap_ip()
ESP32ImprovComponent * global_improv_component
void loop() override
Reconnect WiFi if required.
bool can_proceed() override
bool operator==(const WiFiScanResult &rhs) const
float get_priority() const
ESPPreferenceObject pref_
bool wifi_sta_pre_setup_()
network::IPAddress dns2
The second DNS server. 0.0.0.0 for default.
Trigger * disconnect_trigger_
void IRAM_ATTR HOT yield()
void set_fast_connect(bool fast_connect)
void set_manual_ip(optional< ManualIP > manual_ip)
virtual ESPPreferenceObject make_preference(size_t length, uint32_t type, bool in_flash)=0
uint32_t fnv1_hash(const std::string &str)
Calculate a FNV-1 hash of str.
std::vector< WiFiAP > sta_
bool wifi_scan_start_(bool passive)
network::IPAddress wifi_gateway_ip_()
optional< float > output_power_
network::IPAddress subnet
void set_sta(const WiFiAP &ap)
bool handled_connected_state_
Implementation of SPI Controller mode.
void set_bssid(bssid_t bssid)
const std::string & get_ssid() const
void set_eap(optional< EAPAuth > eap_auth)
void set_hidden(bool hidden)
float get_loop_priority() const override
void set_use_address(const std::string &use_address)
WiFiScanResult(const bssid_t &bssid, std::string ssid, uint8_t channel, int8_t rssi, bool with_auth, bool is_hidden)
std::string get_mac_address_pretty()
Get the device MAC address as a string, in colon-separated uppercase hex notation.
virtual bool sync()=0
Commit pending writes to flash.
std::string get_use_address() const
std::string get_compilation_time() const
Trigger * connect_trigger_
float get_sta_priority(const bssid_t bssid)
network::IPAddress wifi_sta_ip()
void set_password(const std::string &password)
bool wifi_sta_connect_(const WiFiAP &ap)
void setup() override
Setup WiFi interface.
float get_setup_priority() const override
WIFI setup_priority.
WiFi is in AP-only mode and internal AP is already enabled.
void IRAM_ATTR HOT delay(uint32_t ms)
const LogString * get_signal_bars(int8_t rssi)
void dump_config() override