Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'clockless_trinket.h')
-rw-r--r--clockless_trinket.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/clockless_trinket.h b/clockless_trinket.h
index 8024fc96..5dcecafa 100644
--- a/clockless_trinket.h
+++ b/clockless_trinket.h
@@ -73,16 +73,16 @@ public:
}
// set all the leds on the controller to a given color
- virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale = CRGB::White) {
+ virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) {
showRGBInternal_AdjTime(0, false, nLeds, scale, (const byte*)&data);
}
- virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale = CRGB::White) {
+ virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) {
showRGBInternal_AdjTime(0, true, nLeds, scale, (const byte*)rgbdata);
}
#ifdef SUPPORT_ARGB
- virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale = CRGB::White) {
+ virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) {
showRGBInternal_AdjTime(1, true, nLeds, scale, (const byte*)rgbdata);
}
#endif