Milight Nightmode and Whitemode doesn't work

Hello,

I’ve a problem with my milight blubbs (RGBWW and RGBW with iBox2) on Openhab 2.2:

myhome.things:

Bridge milight:bridgeV6:F0FE6B1E2692 [ ADDR=“192.168.23.102”, ID=“F0FE6B1E2692”, PORT=8899 ] {
Thing rgbwwLed 1
Thing rgbwLed 2
Thing rgbwLed 3
Thing rgbwLed 4
}

myhome.items:

Switch Licht_Wohnzimmer_Esstisch_Einaus
Dimmer Licht_Wohnzimmer_Esstisch_Dimmer {channel=“milight:rgbwwLed:F0FE6B1E2692:1:ledbrightness”}
Color Licht_Wohnzimmer_Esstisch_Color {channel=“milight:rgbwwLed:F0FE6B1E2692:1:ledcolor”}
Switch Licht_Wohnzimmer_Esstisch_Weiss {channel=“milight:rgbwwLed:F0FE6B1E2692:1:ledwhitemode”}

myhome.sitemaps:

sitemap myhome label=“Meine Hausautomatition”
{
Switch item=Licht_Wohnzimmer_Esstisch_Einaus label="Wohnzimmer Esstisch"
Slider item=Licht_Wohnzimmer_Esstisch_Dimmer label="Wohnzimmer Esstisch"
Colorpicker item=Licht_Wohnzimmer_Esstisch_Color label=“Wohnzimmer Esstisch” icon="slider"
Switch item=Licht_Wohnzimmer_Esstisch_Weiss label=“Wohnzimmer Esstisch Weiss”


}

events.log:

2017-12-26 09:13:39.761 [me.event.ThingUpdatedEvent] - Thing ‘milight:bridgeV6:F0FE6B1E2692’ has been updated.
2017-12-26 09:13:40.181 [ome.event.ItemCommandEvent] - Item ‘Licht_Wohnzimmer_Esstisch_Weiss’ received command ON
2017-12-26 09:13:40.188 [vent.ItemStateChangedEvent] - Licht_Wohnzimmer_Esstisch_Weiss changed from OFF to ON
2017-12-26 09:13:40.908 [me.event.ThingUpdatedEvent] - Thing ‘milight:bridgeV6:F0FE6B1E2692’ has been updated.
2017-12-26 09:13:41.656 [me.event.ThingUpdatedEvent] - Thing ‘milight:bridgeV6:F0FE6B1E2692’ has been updated.
2017-12-26 09:13:43.322 [me.event.ThingUpdatedEvent] - Thing ‘milight:bridgeV6:F0FE6B1E2692’ has been updated.
2017-12-26 09:13:43.324 [me.event.ThingUpdatedEvent] - Thing ‘milight:bridgeV6:F0FE6B1E2692’ has been updated.

openhab.log:

Doesn’t show any related infos.

The action Licht_Wohnzimmer_Esstisch_Weiss doesn’t do anything. Other Actions are working. The problem is with different hardware (RGBW and RGBWW). What can I do?

best regards,
michael

Did you read about the limitations?

http://docs.openhab.org/addons/bindings/milight/readme.html

for rgbv2Led/rgbwLed the colorpicker will only set the hue and brightness and change to whitemode if the saturation is under a given threshold of 50%.

Thanks for your message. I’ve also tested with a RGBWW Lamp where changing saturation is working, but whitemode not…

if whitemode is not working how can I switch back to “normal” light after changing to a color?

Hi,
I have the same problem since I updated to 2.2. The LED temperature isn’t working either.
You can go back to white selecting it from the color picker.
Regards.

Hi @David_Graff,
Are you still mantaining this binding? OH 2.2 update has broken it. I have a V3-V5 bridge and since I updated, color temperature, night mode, animation mode and animation speed don’t work.
Regards.

Hi,
I am using OH 2.2 with V6 bridge and I have the same problem with white, I can use the colorpicker to set a low saturation but that only uses the color mix to represent white it doesn’t actually switch to using the white LEDs, obviously the color temperature wont change because that effects the white LEDs.not the color mix.

Search this forum for espmilighthub binding, I wrote this for a new open source hub that controls milight globes. All those things u say is broken is working fine in my binding.

I found an odd solution to this problem. Use ledtemperature instead of ledwhitemode as a switch in Items. Then, use a single mapping for ON in sitemaps (i.e. mappings=[ON=“White”]). Actually, any mapping works strangely… Also make sure autoupdate is set to false in items so that it functions as a push button and not as a switch.

You can also pan between whitemode and nightmode after pressing the push button with the color picker.

Thanks for the suggestion. Using ledtemperature instead of ledwhitemode works for rgbwwLed items (yeah!), but it doesn’t work for rgbwLed items as far as I can see.