From 009021118b16dd480cfb76cd53bf41c83dfc51f6 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Tue, 9 Feb 2021 22:17:22 +0300 Subject: [PATCH] lights: fix my92xx build --- code/espurna/light.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/espurna/light.cpp b/code/espurna/light.cpp index d286f9f8..e8702336 100644 --- a/code/espurna/light.cpp +++ b/code/espurna/light.cpp @@ -914,7 +914,7 @@ void _lightProviderHandleValue(unsigned char channel, float value) { #if LIGHT_PROVIDER == LIGHT_PROVIDER_DIMMER pwm_set_duty(pwm, channel); #elif LIGHT_PROVIDER == LIGHT_PROVIDER_MY92XX - _my92xx->setChannel(_lightMy92xxChannel(channel), pwm); + _my92xx->setChannel(Light::build::my92xxChannel(channel), pwm); #endif }