devbobo / homebridge-lifx-lan

LiFx LAN platform plugin for Homebridge
MIT License
84 stars 27 forks source link

LIFX Z (Non-Homekit) show Firmware Update in Home app #37

Open mab5vot9us9a opened 6 years ago

mab5vot9us9a commented 6 years ago

The LIFX Z LED strips that are not Homekit enabled prompt a firmware update notification in the Home app.

To mitigate this I believe one would need handle this special case on line 933 in index.js.

cakefornoreason commented 6 years ago

Just wanted to give this a signal boost as I’m noticing the same issue with the two non-HomeKit LIFX Z strips in my setup as well.

Kazom commented 6 years ago

^^ still an issue

Troubadoure commented 5 years ago

Got the same issue as well

nicknicknickos commented 5 years ago

To fix this:

Here's a screenshot for visual folks

shuether commented 3 years ago

Noticed that homebridge would complain about the hardcoding of the firmware version. So tried I this and it worked. Instead of hardcoding the firmware version, just set the data.majorVersion and data.minorVersion instead. Now I don't get a home bridge complaint.

service.addCharacteristic(Characteristic.FirmwareRevision); } data.majorVersion = 4 data.minorVersion = 1 service.setCharacteristic(Characteristic.FirmwareRevision, data.majorVersion + "." + data.minorVersion);

image