From 091c076128a908b65d68d4f71d59c1e5098b8941 Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sun, 22 Nov 2020 22:20:02 -0600 Subject: [PATCH] Update Tutorials.md --- docs/Tutorials.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/Tutorials.md b/docs/Tutorials.md index dc6df2d..a0e2b78 100644 --- a/docs/Tutorials.md +++ b/docs/Tutorials.md @@ -38,11 +38,12 @@ Example 6 changes Example 5 so that LED #2 is now dimmable, instead of just on/o * storing similar derived Service classes in the same \*.h file for ease of use ### [Example 7 - IdentifyRoutines](../examples/07-IdentifyRoutines/07-IdentifyRoutines.ino) -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. New HomeSpan API topics covered in this example include: +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](../examples/08-Bridges/08-Bridges.ino) +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. ---