mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-07-16 23:41:40 +02:00
Fix mistakes
This commit is contained in:
@ -31,7 +31,7 @@ class MultiColorLight {
|
||||
protected:
|
||||
static const uint16_t ledAmount = 3;
|
||||
static const int16_t ledPin = 48;
|
||||
static const uint8_t maxBrightness = 150;
|
||||
static const uint8_t defaultMaxBrightness = 150;
|
||||
Adafruit_NeoPixel rgbLeds;
|
||||
static constexpr int maximumExecutionDelayMs = 10;
|
||||
|
||||
@ -203,7 +203,7 @@ private:
|
||||
* can be between 0 - maxBrightness
|
||||
*/
|
||||
uint32_t normalizeColor(uint32_t color,
|
||||
uint8_t maxBrigthness = maxBrightness);
|
||||
uint8_t maxBrightness = defaultMaxBrightness);
|
||||
};
|
||||
|
||||
#endif // MultiColorLight_h
|
Reference in New Issue
Block a user