From c43f697b1cdb3909bac0dd39b8fdcca311f2d6bc Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sun, 22 Nov 2020 21:35:35 -0600 Subject: [PATCH] Update Tutorials.md --- docs/Tutorials.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/Tutorials.md b/docs/Tutorials.md index 9e7c23d..7e64f35 100644 --- a/docs/Tutorials.md +++ b/docs/Tutorials.md @@ -8,3 +8,12 @@ This first example introduces the HomeSpan library and demonstrates how to imple ### [Example 2 - TwoSimpleLightBulbs](../examples/02-TwoSimpleLightBulbs/02-TwoSimpleLightBulbs.ino) Example 2 expands on Example 1 by implementing two LightBulbs, each as their own Accessory. +### [Example 3 - CeilingFanWithLight](../examples/03-CeilingFanWithLight/03-CeilingFanWithLight.ino) +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](../examples/04-AdvancedCeilingFan/04-AdvancedCeilingFan.ino) +Example 4 expands on Example 3 by adding Characteristics to set fan speed, fan rotation direction, and light brightness. This example also introduces the HomeSpan methods needed to create custom ranges for the values of Characteristics such as speed and brightness. + +--- + +[↩️](README.md) Back to the Welcome page