From 02748ea532e58686d3f7a9df065a48c4ae0cbf3a Mon Sep 17 00:00:00 2001 From: Petr <5851137+pvyleta@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:34:36 +0200 Subject: [PATCH] added comment --- src/ebus_message.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ebus_message.py b/src/ebus_message.py index 021d895a..7d9d1374 100644 --- a/src/ebus_message.py +++ b/src/ebus_message.py @@ -147,4 +147,13 @@ def __init__(self, name: str, parameter_name: str, id: int, type: str, is_signed # Based on https://github.com/dstrigl/ebusd-config-brink-renovent-excellent-300 and my obervation, the multiplier mathches; Contrary to what WTWCommands.cs says, the ID is mixed up between OperatingHours and TotalFlow # Note: there is also parameterDescriptionTotalFlowIn1000M3, but that is unnecessary, since we already factored in the 1000 multiplier BrinkConfigEbusMessage('TotalFlow', 'parameterDescriptionTotalFlowInM3', 0x25, 'r', False, 1000, '', 'm³'), + + # Note: Following messages were tested, but are not present on SKY300: + # - ActualEBusAddressing = "40220150"; + # - ActualSerialNumber = "40220151"; + # - ActualDeviceID = "40220180"; + # - ActualOperatingTime = "40220183"; + # - ParameterEBusGroupNumber = "405001D0"; + # - ParameterEBusSlaveNumber = "405001D1"; + # - ParameterHeartBeatTimeout = "405001D2"; ] \ No newline at end of file