ignore non realtime values

- data with frametype 0x81 are non realtime
values. Since HA only supports realtime values,
we don't parse them for now
This commit is contained in:
Stefan Allius
2024-04-22 20:24:52 +02:00
parent 95ebb92f05
commit 2e64ae5884

View File

@@ -58,7 +58,7 @@ class RegisterMap:
0x42010126: {'reg': Register.MAX_DESIGNED_POWER, 'fmt': '!H', 'ratio': 1}, # noqa: E501
0x42010170: {'reg': Register.NO_INPUTS, 'fmt': '!B'}, # noqa: E501
0x4281001c: {'reg': Register.POWER_ON_TIME, 'fmt': '<H', 'ratio': 1}, # noqa: E501
# 0x4281001c: {'reg': Register.POWER_ON_TIME, 'fmt': '<H', 'ratio': 1}, # noqa: E501
}