From 12c283e8c343065d5e2aa369169728a630d7e6f5 Mon Sep 17 00:00:00 2001 From: Gregg Date: Sat, 1 Jan 2022 07:14:30 -0600 Subject: [PATCH] Update Pixel.h --- src/extras/Pixel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extras/Pixel.h b/src/extras/Pixel.h index d109b02..bfcc5b8 100644 --- a/src/extras/Pixel.h +++ b/src/extras/Pixel.h @@ -19,7 +19,7 @@ class Pixel { public: Pixel(int pin, float high0, float low0, float high1, float low1, float lowReset); // creates addressable single-wire RGB LED on pin (such as the SK68 or WS28); parameters are in MICROSECONDS! - Pixel(int pin) : Pixel(pin, 0.32, 0.88, 0.64, 0.56, 80.0) {}; // default parameters for some SK68XX chips + Pixel(int pin) : Pixel(pin, 0.32, 0.88, 0.64, 0.56, 80.0) {}; // default parameters for SK68XXMINI-HS LEDs, though will likely work with many other variations as well void setRGB(uint8_t r, uint8_t g, uint8_t b); // sets color to rgb values (0-255) void setHSV(float h, float s, float v); // sets color to hsv values where h=[0,360], s=[0,1], v=[0,1]