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

Homebridge 1.3.0: This plugin generated a warning from the characteristic #88

Open
TiiFuchs opened this issue Feb 22, 2021 · 4 comments

Comments

@TiiFuchs
Copy link

TiiFuchs commented Feb 22, 2021

With Homebridge Version 1.3.0 I get a lot of those warnings:

[2021-2-22 8:44:57] [homebridge-netatmo] This plugin generated a warning from the characteristic 'Atmospheric Pressure': characteristic was supplied illegal value: number 1022.9 exceeded maximum of 255. See https://git.io/JtMGR for more info.
[Air Pressure@Atmospheric Pressure] characteristic was supplied illegal value: number 1023 exceeded maximum of 255.
[2021-2-22 8:46:14] [homebridge-netatmo] This plugin generated a warning from the characteristic 'Atmospheric Pressure': characteristic was supplied illegal value: number 1023 exceeded maximum of 255. See https://git.io/JtMGR for more info.
[Air Pressure@Atmospheric Pressure] characteristic was supplied illegal value: number 1023 exceeded maximum of 255.
[2021-2-22 8:46:14] [homebridge-netatmo] This plugin generated a warning from the characteristic 'Atmospheric Pressure': characteristic was supplied illegal value: number 1023 exceeded maximum of 255. See https://git.io/JtMGR for more info.
[Air Pressure@Atmospheric Pressure] characteristic was supplied illegal value: number 1023 exceeded maximum of 255.
[2021-2-22 8:48:17] [homebridge-netatmo] This plugin generated a warning from the characteristic 'Atmospheric Pressure': characteristic was supplied illegal value: number 1023 exceeded maximum of 255. See https://git.io/JtMGR for more info.
[Air Pressure@Atmospheric Pressure] characteristic was supplied illegal value: number 1023 exceeded maximum of 255.
[2021-2-22 8:53:21] [homebridge-netatmo] This plugin generated a warning from the characteristic 'Atmospheric Pressure': characteristic was supplied illegal value: number 1023 exceeded maximum of 255. See https://git.io/JtMGR for more info.
@vincentbls
Copy link

Same for me. And no more accessories were working.
I disabled this plugin (no more updates since 2017) and installed this one: https://github.com/skrollme/homebridge-eveatmo
Everything works fine.

@TiiFuchs
Copy link
Author

Thanks for the tip! :)

@CBK482
Copy link

CBK482 commented May 13, 2021

Problem seems to be the props of the characteristic.. A UINT8 cannot be bigger than 255. changing to UINT16 solves the issue

  this.setProps({
    format: Characteristic.Formats.UINT8,

@STJIKA
Copy link

STJIKA commented Nov 7, 2021

Problem seems to be the props of the characteristic.. A UINT8 cannot be bigger than 255. changing to UINT16 solves the issue

  this.setProps({
    format: Characteristic.Formats.UINT8,

….where do I have to insert this…????

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

4 participants