Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
mab5vot9us9a opened this issue Feb 11, 2018 · 5 comments
Open

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

mab5vot9us9a opened this issue Feb 11, 2018 · 5 comments

Comments

@mab5vot9us9a
Copy link

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
Copy link

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
Copy link

Kazom commented Mar 23, 2018

^^ still an issue

@Troubadoure
Copy link

Got the same issue as well

@nicknicknickos
Copy link

To fix this:

  • find your index.js file ( should be somewhere like this - /usr/local/lib/node_modules/homebridge-Lifx-lan)
  • go to line 933 in a plain text editor (Atom works great but don't use the native text edit app)
  • change "date.major ... data.minor" to firmware version 2.69
  • save and restart HomeBridge

Here's a screenshot for visual folks

@shuether
Copy link

shuether commented Sep 27, 2021

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants