Skip to content

Latest commit

 

History

History
87 lines (45 loc) · 11.8 KB

File metadata and controls

87 lines (45 loc) · 11.8 KB

WiFi and Ethernet Connectivity

HomeSpan can connect to your home network either via WiFi or Ethernet. All of the ESP32 chips supported by HomeSpan come with built-in WiFi so no additional hardware is needed. Only a small number of ESP32 development boards come with an Ethernet interface (such as this Silicognition wESP32) so additional hardware (such as this Adafruit Ethernet FeatherWing) would be needed to connect via Ethernet.

HomeSpan WiFi Connectivity

Unless HomeSpan detects that you installed and configured an Ethernet interface (see below), it will default to using WiFi to connect to your home network. To make the connection HomeSpan requires the SSID and password for your network (your "WiFi Credentials"), which it saves in non-volatile storage (NVS) for retention even when power is lost. At start-up HomeSpan checks its NVS for your WiFi Credentials. If found, they are used to make the WiFi connection. If not, HomeSpan outputs a message to the Serial Interface (if your device is connected to a computer) and flashes the HomeSpan Status LED (if you've added one) indicating that it requires you to provide your WiFi Credentials. There are three ways of doing so:

  1. Entering your WiFi Credentials via the Serial Monitor

    • If your device is connected to a computer via USB you can type 'W' into the Serial Monitor Command-Line Interface (the "CLI"). HomeSpan will scan your WiFi environment and display all network SSIDs found. You can then choose which SSID to use, or type your own, and provide its password. HomeSpan stores this information in NVS, reboots, and then uses these WiFi Credentials to connect to your network.
  2. Entering your WiFi Credentials via the HomeSpan Setup Access Point

    • If your device is not connected to a computer but you've added both a HomeSpan Control Button and a HomeSpan Status LED you can activate the HomeSpan Command Mode (see the User Guide for details) and start the HomeSpan Setup Access Point. This launches a captive WiFi Access Point on your device that hosts the HomeSpan Setup web form into which you can enter the WiFi Credentials for your home network. Once entered HomeSpan uses these credentials to connect to your network, and if successful saves the credentials in NVS, reboots, and proceeds as per above. Some things to note:

      • you can alternatively launch the HomeSpan Setup Access Point from the CLI by typing 'A'. However, this is primarily for testing purposes since if your device is already connected to a computer via USB you might as well use the 'W' method above
      • you can change the name, password, and time-out of the HomeSpan Setup Access Point using the following homeSpan methods: setApSSID(), setApPassword(), and setApTimeout() (see the API Reference page for details on all homeSpan methods)
      • if you add the homeSpan enableAutoStartAP() method to your sketch, HomeSpan will automatically launch its Setup Access Point if it does not find any WiFi Credentials stored in NVS upon start-up
      • if you really don't like the look and feel of the HomeSpan Setup Access Point you can create your own method of having HomeSpan acquire your WiFi Credentials by implementing the homeSpan setApFunction() method in your sketch
      • yes, Apple does have a more robust method for WiFi-based HomeKit devices to seemlessly acquire WiFi Credentials from your iPhone, but no, this can't be used by HomeSpan because Apple restricts this method to only licensed commercial HomeKit devices
  3. Hardcoding your WiFi Credentials in your HomeSpan sketch

    • If neither of the above methods is appealing, you have the option of hardcoding your WiFi Credentials directly into your sketch using the homeSpan setWifiCredentials() method, though this is not considered a good practice for security reasons.

When HomeSpan tries to connect to your home network using your WiFi Credentials, it makes the requests and then waits for a response. If after a certain time it does not connect, it makes another request and waits a bit longer for a response. After each failed attempt, HomeSpan increases the wait time using a specified pattern, after which the pattern repeats. The default pattern is to start by waiting 5 seconds, then 8, 14, 22, 36, and 60 seconds, after which the pattern starts over again with 5 seconds. If desired, you can create your own request/response wait-time pattern using the homeSpan setConnectionTimes() method.

Once connected, HomeSpan automatically manages all reconnects if connectivity is lost (using the same request/response wait pattern as above). If you have enabled Web Logging, all disconnects and reconnects are logged.

Use with WiFi Mesh Networks

If your home network is based on a mesh router with multiple access points sharing the same SSID, HomeSpan automatically connects the access point with the strongest RSSI signal. As an option, you can add the homeSpan enableWiFiRescan() method to your sketch to have HomeSpan periodically recan your WiFi network to see if there is a stronger access point with the same SSID. If one is found, HomeSpan disconnects from the existing access point and reconnects to the stronger one. In both the Serial Monitor and the Web Log (if enabled), HomeSpan indicates the BSSID (i.e. the 6-byte MAC address) of the specific access point to which it is connected. As an option, you can map BSSIDs to custom display names using the homeSpan addBssidName() method. When specified, HomeSpan will show these display names next to any BSSID in a log file to make it easier to track which access point is being used.

Use with Enterprise WiFi Networks or Specialized WiFi Configurations

Internally, HomeSpan manages WiFi connectivity using the Arduino-ESP32 library's global WiFi object and initiates connections using the WiFi.begin() method. This method assumes connectivity to standard WiFi network requiring an SSID and password. If you are trying to connect to an enterprise WiFi network, or if you have other specialized configuration requirements that need to be made while connecting to your WiFi network (such as changing the power of your WiFi antenna), you can create your own "begin" function for HomeSpan will call instead by implementing the homeSpan setWifiBegin() method in your sketch.

Connectivity CallBacks

If you need to call any other functions either once, or every time, a WiFi connection is established (or re-established after a disconnect) you can implement the homeSpan setConnectionCallback() method in your sketch.

WiFi Frequency Bands: 2.4 GHz vs 5.0 GHz

All ESP32 chips supported by HomeSpan include a 2.4 GHz WiFi radio, which is the default for most IoT devices that prioritize range over speed. However, the ESP32-C5 chip also includes a 5.0 GHz WiFi radio. To enable the use of the 5.0 GHz band on the ESP32-C5, add the following to the setup() function in your sketch:

WiFi.STA.begin();
WiFi.setBandMode(WIFI_BAND_MODE_5G_ONLY);

Note that setBandMode() is only supported by Arduino-ESP32 Core 3.3.0 or greater.

HomeSpan Ethernet Connectivity

HomeSpan utilizes the Arduino-ESP32 library's global ETH object to manage Ethernet connectivity and thus supports any Ethernet board that is supported by the Arduino-ESP32 library. To establish an Ethernet connection, simply add ETH.begin() in the setup() section of your sketch somewhere before calling homeSpan.begin(). The ETH.begin() function requires different parameters depending the specific Ethernet interface, or external board, you are using. Please consult the instructions that came with your Ethernet interface/board and work with the Ethernet examples Espressif provides in the Arduino-ESP32 library to determine the correct parameters for your board.

There is nothing you need to add in your HomeSpan sketch to inform it that you will be using an Ethernet connection instead of WiFi. Rather, at startup, if HomeSpan detects an Ethernet interface device has been properly configured and initialized using ETH.begin(), HomeSpan will automatically switch into "Ethernet mode" and use Ethernet instead of WiFi for all communications to and from your home network. Note that the Ethernet cable itself does not need to be plugged into your router for HomeSpan to switch into "Ethernet mode" during start-up.

However, if for some reason HomeSpan is not able to auto-detect an Ethernet interface has been configured, or initialization of your Ethernet interface using ETH.begin() is being done outside of the main Arduino setup() function, you can force HomeSpan into using Ethernet mode instead of WiFi by calling homeSpan.useEthernet() prior to homeSpan.begin()

Connectivity CallBacks

Similar to WiFi connectivity, HomeSpan automatically handles all Ethernet disconnects/reconnects (e.g. if you unplug the Ethernet cable and then plug it back into the router, or if the router itself reboots) and records such events in the Web Log (if enabled). Also similar to using WiFi, to run a custom function either once, or every time, an Ethernet connection is established (or re-established after a disconnect) you can implement the homeSpan setConnectionCallback() method in your sketch.

IPv6 Compatability

The Arduino-ESP32 library and the Espressif IDF natively supports the simultaneous use of both IPv4 and IPv6 addresses, though unless IPv6 addresses are enabled, the default behavior for any given sketch is to use only IPv4.1 To enable IPv6 addresses on the ESP32 WiFi interface, add WiFi.enableIPv6() to your sketch. To enable IPv6 addresses on the ESP32 Ethernet interface, add ETH.enableIPv6() to your sketch.

When the use of IPv6 addresses is enabled, HomeSpan will automatically handle all HTTP requests received from either an IPv4 or IPv6 address. Note that whereas the ESP32 will typically receive only one IPv4 adddress from the router when connecting to a network, it may receive up to three IPv6 addresses: a Link Local Address, a Unique Local Address, and (optionally) a Global Address. The exact order in which IPv4 and IPv6 addresses are acquired is indeterminant and can change everytime the device reboots and tries to connect to your network.

HomeSpan considers network connectivity to be established upon receiving the first IP address (whether IPv4 or IPv6) and will call any user-defined callback function set by homeSpan.setConnectionCallback() only once upon reception of the first address. HomeSpan does not call the callback when receiving any additional IP addresses but it does creates a Web Log entry (along with a report to the Serial Monitor) for each IP address when acquired.2

In addition, HomeSpan reports the device's IPv6 Unique Local Address alongside its IPv4 address whenever displayed in either the Serial Monitor or the Web Log. If IPv6 addressing has not been enabled, or if it has been enabled but an IPv6 Unique Local Address has not been acquired, the IPv6 address will be shown as "::".


↩️ Back to the Welcome page

Footnotes

  1. IPv4 addresses are 4 bytes long and usually written as 4 decimal numbers (from 0-255) separated by periods, such as 192.168.1.10. IPv6 addresses are 16 bytes long and usually written as 8 groups of 2 bytes each, separated by colons, such as 2001:0db8:85a3:0000:0000:8a2e:0370:7334. By convention, leading zeros for each 2-byte group are usually omitted, and the longest repeated group of zero can be abbreviated by "::" as such: 2001:db8:85a3::8a2e:370:7334.

  2. If you need more advanced callback handling for network connectivity events, such as calling a function for each IP address acquired (instead of just the first one), please use the Arduino-ESP32's built-in network event handling methods: WiFi.onEvent() and ETH.onEvent(), or more generically, Network.onEvent().