5.8 KiB
HomeSpan Tutorials
(editing in progress)
Example 1 - SimpleLightBulb
This first example introduces the HomeSpan library and demonstrates how to implement a simple on/off light control using a combination of HomeSpan Accessory, Service, and Characteristic objects. Once this sketch has been uploaded to your HomeSpan device and the device is paired to your home, a new "lightbulb" tile will appear in the Home App of your iPhone, iPad, or Mac. Though the tile will be fully operational (i.e. you can change the status of the lightbulb from "on" or "off"), we won't yet connect an actual light or LED to the HomeSpan device, so nothing real will light up. Instead, in this and the next few examples, we'll focus on learning about the different ways HomeKit controls can be configured. Starting in Example 5, we'll connect an LED to the device and introduce the methods that actually turn the LED on and off from your Home App. HomeSpan API topics covered in this example include:
- the
homeSpanglobal object, and it'sbegin()andpoll()methods - referencing HomeSpan categories defined in the
Categories::namespace - instantiating a new
SpanAccessory - instantiating HomeSpan Services and Characteristics defined in the
Service::andCharacteristic::namespaces
Example 2 - TwoSimpleLightBulbs
Example 2 expands on Example 1 by implementing two LightBulbs, each as their own Accessory.
Example 3 - CeilingFanWithLight
Example 3 shows how adding multiple Services to a single Accessory allows us to create a multi-featured Accessory, such as a ceiling fan wih a ceiling light.
Example 4 - AdvancedCeilingFan
Example 4 expands on Example 3 by adding Characteristics to set fan speed, fan rotation direction, and light brightness. New HomeSpan API topics covered in this example include:
- using
SpanRange()to set the allowable range and increment values for a Characteristic
Example 5 - WorkingLED
Example 5 expands on Example 2 by adding in the code needed to actually control LEDs connected to the ESP32 from HomeKit. In Example 2 we built out all the functionality to create a "Tile" Acessories inside HomeKit that displayed an on/off light, but these control did not actually operate anything on the ESP32. To operate actual devices HomeSpan needs to be programmed to respond to "update" requests from HomeKit by performing some form of operation. New HomeSpan API topics covered in this example include:
- creating derived device-specific Service structures (classes) from a base HomeSpan Service class
- placing derived Service classes in their own *.h files for readability and portability
- implementing the virtual
update()method for your derived Services - saving references to Characteristic objects with a
SpanCharacteristic *pointer - retrieving new and updated Characteristic values with the
getVal()andgetNewVal()methods
Example 6 - DimmableLED
Example 6 changes Example 5 so that LED #2 is now dimmable, instead of just on/off. New HomeSpan API topics covered in this example include:
- implementing pulse-width-modulation on any ESP32 pin by instantiating a
PwmPin()object - setting the PWM level to control the brightness of an LED using the PwmPin
set()method - storing similar derived Service classes in the same *.h file for ease of use
Example 7 - IdentifyRoutines
Example 7 uses the encapsulation techniques illustrated in Examples 5 and 6 to derive an easier-to-use Identify Service from HomeSpan's AccessoryInformation Service. The example includes the implementation of an update() method that responds to HomeKit requests writing to the Identify Characteristic. New HomeSpan API topics covered in this example include:
- storing dissimilar derived Service classes in the different *.h files for better portability
Example 8 - Bridges
Example 8 is functionally identical to Example 7, except that instead of defining two Accessories (one for the on/off LED and one for the dimmable LED), we define three Accessories, where the first acts as a HomeKit Bridge.
Example 9 - MessageLogging
Example 9 illustrates how to add log messages to your HomeSpan sketch. The code is identical to Example 8 except for the inclusion of new log messages. New HomeSpan API topics covered in this example include:
- using the
LOG1()andLOG2()macros to create log messages for different log levels - setting the initial log level for a sketch with the
homeSpan.setLogLevel()method
Example 10 - RGB_LED
Example 10 illustrates how to control an RGB LED to set any color and brightness. New HomeSpan API topics covered in this example include:
- converting HomeKit Hue/Saturation/Brightness levels to Red/Green/Blue levels using
PwmPin::HSVtoRGB() - using the optional template functionality of
getVal(), such asgetVal<float>()
Example 11 - ServiceOptions
This example explores how the Name Characteristic can be used to create different naming schemes for multi-Service Accessories, and how these appear in the Home App depending on how you display the Accessory tile. New HomeSpan API topics covered in this example include:
- setting the primary Service for an Accessory with the
setPrimary()method
↩️ Back to the Welcome page