diff --git a/docs/Berry_Addressable-LED.md b/docs/Berry_Addressable-LED.md index 7fd6a186bd..fdba774b23 100644 --- a/docs/Berry_Addressable-LED.md +++ b/docs/Berry_Addressable-LED.md @@ -153,9 +153,9 @@ set_bri|`set_bri(bri:0..100) -> nil` sets the brightness for the color, defaults Palette|Description :---|:--- `animate.PALETTE_RAINBOW_WHITE`|Cycle through 8 colors (including white) and keep colors steady
-`animate.PALETTE_STANDARD_TAG`|Standard palette cycling through 7 colors
-`animate.PALETTE_STANDARD_VAL`|Same palette described as values
-`animate.PALETTE_SATURATED_TAG`|Cycle through 7 saturated colors
+`animate.PALETTE_STANDARD_TAG`|Standard palette cycling through 7 colors
+`animate.PALETTE_STANDARD_VAL`|Cycle through 6 colors as values
+`animate.PALETTE_SATURATED_TAG`|Cycle through 6 saturated colors
Palettes can be specified as a `bytes()` object of via `comptr` if they are solidified in Flash. @@ -172,7 +172,7 @@ This format makes it easier to adjust the transition time between colors Example: ```berry -var PALETTE_SATURATED_TAG = bytes( +var PALETTE_TAG = bytes( "40" "FF0000" # red "40" "FFA500" # orange "40" "FFFF00" # yellow @@ -196,7 +196,7 @@ This format is useful to use palettes that represent a color range. Example: ```berry -var PALETTE_STANDARD_VAL = bytes( +var PALETTE_VAL = bytes( "00" "FF0000" # red "24" "FFA500" # orange "49" "FFFF00" # yellow