From 6f04a2a8383b5a7180561a29ae8531bd78fd6390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Wed, 8 Nov 2017 11:53:25 +0100 Subject: [PATCH] Fix typo in light.ino module --- code/espurna/light.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/espurna/light.ino b/code/espurna/light.ino index d867b7ba..da0cc719 100644 --- a/code/espurna/light.ino +++ b/code/espurna/light.ino @@ -270,7 +270,7 @@ void _lightProviderUpdate() { unsigned int red = _toPWM(0); unsigned int green = _toPWM(1); unsigned int blue = _toPWM(2); - unsigned int white = _toPWM(3) + unsigned int white = _toPWM(3); unsigned int warm = _toPWM(4); _my9291->setColor((my9291_color_t) { red, green, blue, white, warm }); _my9291->setState(true);