From 487e0d2cd880d4cddba2941cd243ec83969ca644 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sun, 11 Dec 2016 00:55:37 -0800 Subject: [PATCH] Minor fixes (#142) --- keywords.txt | 4 ++-- library.json | 4 ++-- library.properties | 2 +- src/internal/RgbColor.h | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/keywords.txt b/keywords.txt index d0dc8d6..d8a4639 100644 --- a/keywords.txt +++ b/keywords.txt @@ -30,8 +30,8 @@ NeoEsp8266Uart800KbpsMethod KEYWORD1 NeoEsp8266Uart400KbpsMethod KEYWORD1 NeoEsp8266AsyncUart800KbpsMethod KEYWORD1 NeoEsp8266AsyncUart400KbpsMethod KEYWORD1 -NeoEsp8266BitBang800Method KEYWORD1 -NeoEsp8266BitBang400Method KEYWORD1 +NeoEsp8266BitBang800KbpsMethod KEYWORD1 +NeoEsp8266BitBang400KbpsMethod KEYWORD1 DotStarMethod KEYWORD1 DotStarSpiMethod KEYWORD1 NeoPixelAnimator KEYWORD1 diff --git a/library.json b/library.json index 6098e43..e361d73 100644 --- a/library.json +++ b/library.json @@ -1,7 +1,7 @@ { "name": "NeoPixelBus", - "keywords": "NeoPixel, WS2811, WS2812, SK6812, DotStar, ADA102, RGB, RGBW", - "description": "A library that makes controlling NeoPixels (WS2811, WS2812 & SK6812) and DotStars (ADA102) easy. Supports most Arduino platforms. Support for RGBW pixels. Includes seperate RgbColor, RgbwColor, HslColor, and HsbColor objects. Includes an animator class that helps create asyncronous animations. For Esp8266 it has three methods of sending NeoPixel data, DMA, UART, and Bit Bang; and two methods of sending DotStar data, hardware SPI and software SPI.", + "keywords": "NeoPixel, WS2811, WS2812, SK6812, DotStar, APA102, RGB, RGBW", + "description": "A library that makes controlling NeoPixels (WS2811, WS2812 & SK6812) and DotStars (APA102) easy. Supports most Arduino platforms. Support for RGBW pixels. Includes seperate RgbColor, RgbwColor, HslColor, and HsbColor objects. Includes an animator class that helps create asyncronous animations. For Esp8266 it has three methods of sending NeoPixel data, DMA, UART, and Bit Bang; and two methods of sending DotStar data, hardware SPI and software SPI.", "homepage": "https://github.com/Makuna/NeoPixelBus/wiki", "repository": { diff --git a/library.properties b/library.properties index 564810e..5661f88 100644 --- a/library.properties +++ b/library.properties @@ -2,7 +2,7 @@ name=NeoPixelBus by Makuna version=2.2.4 author=Michael C. Miller (makuna@live.com) maintainer=Michael C. Miller (makuna@live.com) -sentence=A library that makes controlling NeoPixels (WS2811, WS2812 & SK6812) and DotStars (ADA102) easy. +sentence=A library that makes controlling NeoPixels (WS2811, WS2812 & SK6812) and DotStars (APA102) easy. paragraph=Supports most Arduino platforms, and especially Esp8266. Support for RGBW pixels. Includes seperate RgbColor, RgbwColor, HslColor, and HsbColor objects. Includes an animator class that helps create asyncronous animations. Supports Matrix layout of pixels. Includes Gamma corretion object. For Esp8266 it has three methods of sending NeoPixel data, DMA, UART, and Bit Bang; and two methods of sending DotStar data, hardware SPI and software SPI. category=Display url=https://github.com/Makuna/NeoPixelBus/wiki diff --git a/src/internal/RgbColor.h b/src/internal/RgbColor.h index 252bc4c..5161123 100644 --- a/src/internal/RgbColor.h +++ b/src/internal/RgbColor.h @@ -106,7 +106,7 @@ struct RgbColor void Darken(uint8_t delta); // ------------------------------------------------------------------------ - // Lighten will adjust the color by the given delta toward ite + // Lighten will adjust the color by the given delta toward white // NOTE: This is a simple linear change // delta - (0-255) the amount to lighten the color // ------------------------------------------------------------------------