saue0,
Very cool module. After your latest update, I'm not seeing the runtime errors either.
It looks like you have code to tell different light types? E.g. it looks like it can tell the difference between my hue color, and my non-color lights (I'm using GE Link bulbs, but I think for all intents and purposes they are identical to luxe).
It appears, however, that my Hue Bloom bulbs are being detected as non-color bulbs ?
------------ EDIT -----------------
Looking here:
if (ltype.Equals("Extended color light"))
Program.AddVirtualModule(MODULES_DOMAIN, idx.ToString(), "Dimmer", MODULES_WIDGET);
Philips Hue Bloom: "Color light"
GE Link Bulbs: "Dimmable light"
Philips Hue Bulb: "Extended color light"
So I think the if state should be:
if ((ltype.Equals("Color light")) || (ltype.Equals("Extended color light")))