Page 1 of 1

White fader not shown with RGBW devices and RGBWZ is missing

Posted: Wednesday 19 February 2020 13:38
by rolandbreedveld
Hi
2 issues with RGBW devices in Dashticz:

in main.js is RGBWZ missing, I changed it to:
function isRGBDeviceAndEnabled(device) {
return (typeof (settings['no_rgb']) === 'undefined' ||
(typeof (settings['no_rgb']) !== 'undefined' &&
parseFloat(settings['no_rgb']) === 0)) &&
(device['SubType'] === 'RGBWZ' || device['SubType'] === 'RGBW' || device['SubType'] === 'RGBWW' || device['SubType'] === 'RGB' || device['SubType'] === 'RGBWWZ' );
}

I use RGBWZ and RGBWWZ devices:
the White/Tone fader is missing in Dashticz, I can only control the RGB colors, not the White and Tone Led's
is it possible to enable the white fader somewhere?

Re: White fader not shown with RGBW devices and RGBWZ is missing

Posted: Wednesday 19 February 2020 16:21
by Lokonli
I'll add RGBWZ to the beta branch. That is an easy change.

Currently it's not possible to enable the white fader. The feature has been requested already. I expect it will be added next month.
See https://github.com/Dashticz/dashticz/issues/166

Re: White fader not shown with RGBW devices and RGBWZ is missing

Posted: Wednesday 19 February 2020 16:33
by rolandbreedveld
Lokonli wrote: Wednesday 19 February 2020 16:21 I'll add RGBWZ to the beta branch. That is an easy change.

Currently it's not possible to enable the white fader. The feature has been requested already. I expect it will be added next month.
See https://github.com/Dashticz/dashticz/issues/166
Top, Thanxzzzz!

Re: White fader not shown with RGBW devices and RGBWZ is missing

Posted: Wednesday 19 February 2020 17:32
by rolandbreedveld
@Lokonli : The "WW" Device is also missing a slider, it has the brightness but it's missing the Tone slider.
all xxxWWx devices (also RGBWW and RGBWWZ) has 2 led's 1 for White led and 1 for the SoftTone led, so the RGBWW device should also need a slider for White and Tone.