-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
Value for RSSI_DEVICE > (max) 127 #346
Comments
Are there also values greater than 128? And could you please show the raw of the object. |
I haven't seen values > 128 so far.
|
Same happened today for a "HmIP-ASIR". |
|
I have the same issue for various devices... |
Probably the best way to get this fixed from my experience is if eq3 is contacted directly https://www.eq-3.de/service.html because GitHub issues seem to be mainly ignored. |
Same here: Only HMIP devices seem to be affected, hm.rega is "v3.0.33" I didn't see such warning messages, before I added an HMIP-AccesPoint into the Network. |
Also ich bekomme die Meldungen auch noch immer, obwohl kein Gerät eine RSSI von >127 hat. Alle liegen dauerhaft deutlich unter 100. Ich meine, dass die Meldungen erst mit dem admin-adapter 5 aufgetreten sind. EDIT: |
Ich kann bestätigen, dass das Problem erst mit Ergänzen eines HmiP-HAP auftritt. |
Das sollte man mal dringend an eq3 weitergeben, im Adapter kann ich das nicht handhaben außer dirty 128 abzulehnen o.ä. da dies aber wohl eindeutig nur mit einem HMIP HAP passiert, ist da sicher ein Fehler Seitens eq3 |
I think the RSSI values are reported as UInt8, i.e. w/ the high bit set for negative values. E.g. And there seem to be two special values:
|
Supplement: |
Die Ausgabe der Warnung könnte man doch ganz einfach programmtechnisch begegnen: if (RSSI==128) keine Warnung ausgeben; bzw. if ((RSSI>127) && (RSSI!=128)) Warnung ausgeben; bzw. if (RSSI>128) Warnung ausgeben; Die Warnungen müllen immer fleißig den Log zu... :-/ Spricht was dagegen? EDIT: Der RSSI von 128 soll nur anzeigen, dass das Gerät über einen HAP verbunden ist. |
Describe the bug
hm-rpc.1 State value to set for "hm-rpc.1.x.0.RSSI_DEVICE" has value "128" greater than max "127"
Versions:
Additional context
HM-IP Devices showing this issue: HmIP-DBB, HmIP-BSL (there might be more - but those two I can confirm)
Had the devices recreated in ioBroker - same problem.
The text was updated successfully, but these errors were encountered: