ESPHome
2024.10.2
|
This component is responsible for managing the ESP WiFi interface. More...
#include <wifi_component.h>
Public Member Functions | |
WiFiComponent () | |
Construct a WiFiComponent. More... | |
void | set_sta (const WiFiAP &ap) |
void | add_sta (const WiFiAP &ap) |
void | clear_sta () |
void | set_ap (const WiFiAP &ap) |
Setup an Access Point that should be created if no connection to a station can be made. More... | |
WiFiAP | get_ap () |
void | enable () |
void | disable () |
bool | is_disabled () |
void | start_scanning () |
void | check_scanning_finished () |
void | start_connecting (const WiFiAP &ap, bool two) |
void | set_fast_connect (bool fast_connect) |
void | set_ap_timeout (uint32_t ap_timeout) |
void | check_connecting_finished () |
void | retry_connect () |
bool | can_proceed () override |
void | set_reboot_timeout (uint32_t reboot_timeout) |
bool | is_connected () |
void | set_power_save_mode (WiFiPowerSaveMode power_save) |
void | set_output_power (float output_power) |
void | set_passive_scan (bool passive) |
void | save_wifi_sta (const std::string &ssid, const std::string &password) |
void | setup () override |
Setup WiFi interface. More... | |
void | start () |
void | dump_config () override |
float | get_setup_priority () const override |
WIFI setup_priority. More... | |
float | get_loop_priority () const override |
void | loop () override |
Reconnect WiFi if required. More... | |
bool | has_sta () const |
bool | has_ap () const |
void | set_btm (bool btm) |
void | set_rrm (bool rrm) |
network::IPAddress | get_dns_address (int num) |
network::IPAddresses | get_ip_addresses () |
std::string | get_use_address () const |
void | set_use_address (const std::string &use_address) |
const std::vector< WiFiScanResult > & | get_scan_result () const |
network::IPAddress | wifi_soft_ap_ip () |
bool | has_sta_priority (const bssid_t &bssid) |
float | get_sta_priority (const bssid_t bssid) |
void | set_sta_priority (const bssid_t bssid, float priority) |
network::IPAddresses | wifi_sta_ip_addresses () |
std::string | wifi_ssid () |
bssid_t | wifi_bssid () |
int8_t | wifi_rssi () |
void | set_enable_on_boot (bool enable_on_boot) |
Trigger * | get_connect_trigger () const |
Trigger * | get_disconnect_trigger () const |
Public Member Functions inherited from esphome::Component | |
float | get_actual_setup_priority () const |
void | set_setup_priority (float priority) |
void | call () |
virtual void | on_shutdown () |
virtual void | on_safe_shutdown () |
uint32_t | get_component_state () const |
virtual void | mark_failed () |
Mark this component as failed. More... | |
bool | is_failed () const |
bool | is_ready () const |
bool | status_has_warning () const |
bool | status_has_error () const |
void | status_set_warning (const char *message="unspecified") |
void | status_set_error (const char *message="unspecified") |
void | status_clear_warning () |
void | status_clear_error () |
void | status_momentary_warning (const std::string &name, uint32_t length=5000) |
void | status_momentary_error (const std::string &name, uint32_t length=5000) |
bool | has_overridden_loop () const |
void | set_component_source (const char *source) |
Set where this component was loaded from for some debug messages. More... | |
const char * | get_component_source () const |
Get the integration where this component was declared as a string. More... | |
Protected Member Functions | |
void | setup_ap_config_ () |
void | print_connect_params_ () |
void | wifi_loop_ () |
bool | wifi_mode_ (optional< bool > sta, optional< bool > ap) |
bool | wifi_sta_pre_setup_ () |
bool | wifi_apply_output_power_ (float output_power) |
bool | wifi_apply_power_save_ () |
bool | wifi_sta_ip_config_ (optional< ManualIP > manual_ip) |
bool | wifi_apply_hostname_ () |
bool | wifi_sta_connect_ (const WiFiAP &ap) |
void | wifi_pre_setup_ () |
WiFiSTAConnectStatus | wifi_sta_connect_status_ () |
bool | wifi_scan_start_ (bool passive) |
bool | wifi_ap_ip_config_ (optional< ManualIP > manual_ip) |
bool | wifi_start_ap_ (const WiFiAP &ap) |
bool | wifi_disconnect_ () |
int32_t | wifi_channel_ () |
network::IPAddress | wifi_subnet_mask_ () |
network::IPAddress | wifi_gateway_ip_ () |
network::IPAddress | wifi_dns_ip_ (int num) |
bool | is_captive_portal_active_ () |
bool | is_esp32_improv_active_ () |
void | load_fast_connect_settings_ () |
void | save_fast_connect_settings_ () |
void | wifi_scan_done_callback_ (void *arg, STATUS status) |
void | wifi_event_callback_ (arduino_event_id_t event, arduino_event_info_t info) |
void | wifi_scan_done_callback_ () |
void | wifi_process_event_ (IDFWiFiEvent *data) |
void | wifi_scan_result (void *env, const cyw43_ev_scan_result_t *result) |
void | wifi_event_callback_ (arduino_event_id_t event, arduino_event_info_t info) |
void | wifi_scan_done_callback_ () |
Protected Member Functions inherited from esphome::Component | |
virtual void | call_loop () |
virtual void | call_setup () |
virtual void | call_dump_config () |
void | set_interval (const std::string &name, uint32_t interval, std::function< void()> &&f) |
Set an interval function with a unique name. More... | |
void | set_interval (uint32_t interval, std::function< void()> &&f) |
bool | cancel_interval (const std::string &name) |
Cancel an interval function. More... | |
void | set_retry (const std::string &name, uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f) |
Set an retry function with a unique name. More... | |
void | set_retry (uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f) |
bool | cancel_retry (const std::string &name) |
Cancel a retry function. More... | |
void | set_timeout (const std::string &name, uint32_t timeout, std::function< void()> &&f) |
Set a timeout function with a unique name. More... | |
void | set_timeout (uint32_t timeout, std::function< void()> &&f) |
bool | cancel_timeout (const std::string &name) |
Cancel a timeout function. More... | |
void | defer (const std::string &name, std::function< void()> &&f) |
Defer a callback to the next loop() call. More... | |
void | defer (std::function< void()> &&f) |
Defer a callback to the next loop() call. More... | |
bool | cancel_defer (const std::string &name) |
Cancel a defer callback using the specified name, name must not be empty. More... | |
Static Protected Member Functions | |
static std::string | format_mac_addr (const uint8_t mac[6]) |
static void | wifi_event_callback (System_Event_t *event) |
static void | s_wifi_scan_done_callback (void *arg, STATUS status) |
static int | s_wifi_scan_result (void *env, const cyw43_ev_scan_result_t *result) |
This component is responsible for managing the ESP WiFi interface.
Definition at line 206 of file wifi_component.h.
esphome::wifi::WiFiComponent::WiFiComponent | ( | ) |
Construct a WiFiComponent.
Definition at line 211 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::add_sta | ( | const WiFiAP & | ap | ) |
Definition at line 292 of file wifi_component.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 716 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::check_connecting_finished | ( | ) |
Definition at line 604 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::check_scanning_finished | ( | ) |
Definition at line 487 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::clear_sta | ( | ) |
Definition at line 297 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::disable | ( | ) |
Definition at line 468 of file wifi_component.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 599 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::enable | ( | ) |
Definition at line 458 of file wifi_component.cpp.
|
staticprotected |
Definition at line 731 of file wifi_component.cpp.
|
inline |
Definition at line 224 of file wifi_component.h.
|
inline |
Definition at line 317 of file wifi_component.h.
|
inline |
Definition at line 318 of file wifi_component.h.
network::IPAddress esphome::wifi::WiFiComponent::get_dns_address | ( | int | num | ) |
Definition at line 231 of file wifi_component.cpp.
network::IPAddresses esphome::wifi::WiFiComponent::get_ip_addresses | ( | ) |
Definition at line 220 of file wifi_component.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 288 of file wifi_component.cpp.
|
inline |
Definition at line 278 of file wifi_component.h.
|
overridevirtual |
WIFI setup_priority.
Reimplemented from esphome::Component.
Definition at line 45 of file wifi_component.cpp.
|
inline |
Definition at line 289 of file wifi_component.h.
std::string esphome::wifi::WiFiComponent::get_use_address | ( | ) | const |
Definition at line 236 of file wifi_component.cpp.
bool esphome::wifi::WiFiComponent::has_ap | ( | ) | const |
Definition at line 213 of file wifi_component.cpp.
bool esphome::wifi::WiFiComponent::has_sta | ( | ) | const |
Definition at line 214 of file wifi_component.cpp.
|
inline |
Definition at line 282 of file wifi_component.h.
|
protected |
Definition at line 736 of file wifi_component.cpp.
bool esphome::wifi::WiFiComponent::is_connected | ( | ) |
Definition at line 723 of file wifi_component.cpp.
bool esphome::wifi::WiFiComponent::is_disabled | ( | ) |
Definition at line 478 of file wifi_component.cpp.
|
protected |
Definition at line 743 of file wifi_component.cpp.
|
protected |
Definition at line 751 of file wifi_component.cpp.
|
overridevirtual |
Reconnect WiFi if required.
Reimplemented from esphome::Component.
Definition at line 123 of file wifi_component.cpp.
|
protected |
Definition at line 425 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::retry_connect | ( | ) |
Definition at line 678 of file wifi_component.cpp.
|
staticprotected |
Definition at line 679 of file wifi_component_esp8266.cpp.
|
staticprotected |
Definition at line 115 of file wifi_component_pico_w.cpp.
|
protected |
Definition at line 764 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::save_wifi_sta | ( | const std::string & | ssid, |
const std::string & | password | ||
) |
Definition at line 298 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::set_ap | ( | const WiFiAP & | ap | ) |
Setup an Access Point that should be created if no connection to a station can be made.
This can also be used without set_sta(). Then the AP will always be active.
If both STA and AP are defined, then both will be enabled at startup, but if a connection to a station can be made, the AP will be turned off again.
Definition at line 282 of file wifi_component.cpp.
|
inline |
Definition at line 234 of file wifi_component.h.
void esphome::wifi::WiFiComponent::set_btm | ( | bool | btm | ) |
Definition at line 217 of file wifi_component.cpp.
|
inline |
Definition at line 315 of file wifi_component.h.
void esphome::wifi::WiFiComponent::set_fast_connect | ( | bool | fast_connect | ) |
Definition at line 215 of file wifi_component.cpp.
|
inline |
Definition at line 247 of file wifi_component.h.
void esphome::wifi::WiFiComponent::set_passive_scan | ( | bool | passive | ) |
Definition at line 729 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::set_power_save_mode | ( | WiFiPowerSaveMode | power_save | ) |
Definition at line 727 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::set_reboot_timeout | ( | uint32_t | reboot_timeout | ) |
Definition at line 722 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::set_rrm | ( | bool | rrm | ) |
Definition at line 218 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::set_sta | ( | const WiFiAP & | ap | ) |
Definition at line 293 of file wifi_component.cpp.
|
inline |
Definition at line 296 of file wifi_component.h.
void esphome::wifi::WiFiComponent::set_use_address | ( | const std::string & | use_address | ) |
Definition at line 242 of file wifi_component.cpp.
|
overridevirtual |
Setup WiFi interface.
Reimplemented from esphome::Component.
Definition at line 47 of file wifi_component.cpp.
|
protected |
Definition at line 245 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::start | ( | ) |
Definition at line 60 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::start_connecting | ( | const WiFiAP & | ap, |
bool | two | ||
) |
Definition at line 312 of file wifi_component.cpp.
void esphome::wifi::WiFiComponent::start_scanning | ( | ) |
Definition at line 480 of file wifi_component.cpp.
Definition at line 686 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 349 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 110 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 115 of file wifi_component_esp32_arduino.cpp.
bssid_t esphome::wifi::WiFiComponent::wifi_bssid | ( | ) |
Definition at line 791 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 802 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 789 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 805 of file wifi_component_esp32_arduino.cpp.
|
staticprotected |
Definition at line 484 of file wifi_component_esp8266.cpp.
|
protected |
Definition at line 488 of file wifi_component_esp32_arduino.cpp.
|
protected |
|
protected |
Definition at line 804 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 466 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 49 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 36 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 657 of file wifi_component_esp_idf.cpp.
int8_t esphome::wifi::WiFiComponent::wifi_rssi | ( | ) |
Definition at line 801 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 683 of file wifi_component_esp8266.cpp.
|
protected |
Definition at line 662 of file wifi_component_esp32_arduino.cpp.
|
protected |
|
protected |
Definition at line 120 of file wifi_component_pico_w.cpp.
|
protected |
Definition at line 648 of file wifi_component_esp32_arduino.cpp.
network::IPAddress esphome::wifi::WiFiComponent::wifi_soft_ap_ip | ( | ) |
Definition at line 782 of file wifi_component_esp32_arduino.cpp.
std::string esphome::wifi::WiFiComponent::wifi_ssid | ( | ) |
Definition at line 800 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 132 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 632 of file wifi_component_esp32_arduino.cpp.
network::IPAddresses esphome::wifi::WiFiComponent::wifi_sta_ip_addresses | ( | ) |
Definition at line 324 of file wifi_component_esp32_arduino.cpp.
Definition at line 268 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 101 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 742 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 803 of file wifi_component_esp32_arduino.cpp.
|
protected |
Definition at line 393 of file wifi_component.h.
|
protected |
Definition at line 390 of file wifi_component.h.
|
protected |
Definition at line 402 of file wifi_component.h.
|
protected |
Definition at line 397 of file wifi_component.h.
|
protected |
Definition at line 409 of file wifi_component.h.
Definition at line 418 of file wifi_component.h.
Definition at line 419 of file wifi_component.h.
|
protected |
Definition at line 412 of file wifi_component.h.
|
protected |
Definition at line 399 of file wifi_component.h.
|
protected |
Definition at line 386 of file wifi_component.h.
|
protected |
Definition at line 406 of file wifi_component.h.
|
protected |
Definition at line 413 of file wifi_component.h.
|
protected |
Definition at line 392 of file wifi_component.h.
|
protected |
Definition at line 389 of file wifi_component.h.
|
protected |
Definition at line 407 of file wifi_component.h.
|
protected |
Definition at line 395 of file wifi_component.h.
|
protected |
Definition at line 415 of file wifi_component.h.
|
protected |
Definition at line 394 of file wifi_component.h.
|
protected |
Definition at line 403 of file wifi_component.h.
|
protected |
Definition at line 404 of file wifi_component.h.
|
protected |
Definition at line 398 of file wifi_component.h.
|
protected |
Definition at line 405 of file wifi_component.h.
|
protected |
Definition at line 396 of file wifi_component.h.
|
protected |
Definition at line 387 of file wifi_component.h.
|
protected |
Definition at line 410 of file wifi_component.h.
|
protected |
Definition at line 401 of file wifi_component.h.
|
protected |
Definition at line 400 of file wifi_component.h.
|
protected |
Definition at line 385 of file wifi_component.h.
|
protected |
Definition at line 383 of file wifi_component.h.
|
protected |
Definition at line 384 of file wifi_component.h.
|
protected |
Definition at line 391 of file wifi_component.h.
|
protected |
Definition at line 382 of file wifi_component.h.