We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 217f9ea + 5d50622 commit d306208Copy full SHA for d306208
tasmota/tasmota_xdrv_driver/xdrv_75_dali.ino
@@ -974,6 +974,11 @@ bool DaliInit(uint32_t function) {
974
Dali->target_rgbwaf = DaliQueryRGBWAF(DaliTarget2Address(Dali->Settings.target));
975
if (Dali->target_rgbwaf > 1) {
976
TasmotaGlobal.light_type = Dali->Settings.light_type;
977
+ if (!Settings->flag3.pwm_multi_channels && // SetOption68 0 - Enable multi-channels PWM instead of Color PWM
978
+ (TasmotaGlobal.light_type >= LT_RGBW) && // RGBW or RGBCW
979
+ (Settings->param[P_RGB_REMAP] & 128)) { // SetOption37 128
980
+ UpdateDevicesPresent(1); // We manage RGB and W separately, hence adding a device
981
+ }
982
}
983
#endif // DALI_LIGHT_COLOR_SUPPORT
984
0 commit comments