From 2a4ebe952221a91218b892e8fc1cd1eea17ac80b Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sun, 21 Mar 2021 18:26:12 -0500 Subject: [PATCH] Update Tutorials.md --- docs/Tutorials.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Tutorials.md b/docs/Tutorials.md index 1d7eaf3..08ca70b 100644 --- a/docs/Tutorials.md +++ b/docs/Tutorials.md @@ -35,8 +35,8 @@ Example 5 expands on Example 2 by adding in the code needed to actually control ### [Example 6 - DimmableLED](../examples/06-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 +* implementing pulse-width-modulation (PWM) to control an LED attached to any ESP32 pin by instantiating an `LedPin()` object +* setting the brightness of an LED using the LedPin `set()` method * storing similar derived Service classes in the same \*.h file for ease of use ### [Example 7 - IdentifyRoutines](../examples/07-IdentifyRoutines)