Browse Source

Fix typo in light.ino module

fastled
Xose Pérez 7 years ago
parent
commit
6f04a2a838
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/light.ino

+ 1
- 1
code/espurna/light.ino View File

@ -270,7 +270,7 @@ void _lightProviderUpdate() {
unsigned int red = _toPWM(0); unsigned int red = _toPWM(0);
unsigned int green = _toPWM(1); unsigned int green = _toPWM(1);
unsigned int blue = _toPWM(2); unsigned int blue = _toPWM(2);
unsigned int white = _toPWM(3)
unsigned int white = _toPWM(3);
unsigned int warm = _toPWM(4); unsigned int warm = _toPWM(4);
_my9291->setColor((my9291_color_t) { red, green, blue, white, warm }); _my9291->setColor((my9291_color_t) { red, green, blue, white, warm });
_my9291->setState(true); _my9291->setState(true);


Loading…
Cancel
Save