From 0a34e034d76705cd78e1a190932bcb4da709aaf3 Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Wed, 25 May 2022 11:05:31 -0500 Subject: [PATCH] Fix Turbo docs to use `sticky()` instead of `toggle()` Signed-off-by: Michael Richters --- plugins/Kaleidoscope-Turbo/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/Kaleidoscope-Turbo/README.md b/plugins/Kaleidoscope-Turbo/README.md index cfbe1141..0c18b22e 100644 --- a/plugins/Kaleidoscope-Turbo/README.md +++ b/plugins/Kaleidoscope-Turbo/README.md @@ -24,7 +24,7 @@ void setup() { Kaleidoscope.setup(); Turbo.interval(30); - Turbo.toggle(true); + Turbo.sticky(true); Turbo.flash(true); Turbo.flashInterval(80); Turbo.activeColor(CRGB(0x64, 0x96, 0xed)); @@ -50,7 +50,6 @@ The `Turbo` object has the following user-configurable properties: ### `.sticky([bool])` > This method makes the Turbo functionality sticky, so it remains in effect not only while -> > it is held, but after it is released too, until it is toggled off with another tap. Without > arguments, the method enables the sticky functionality. Passing a boolean argument > sets stickiness to the given value.