We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e287267 commit 65a1439Copy full SHA for 65a1439
custom_components/solvis_control/coordinator.py
@@ -89,10 +89,10 @@ async def _async_update_data(self):
89
parsed_data[register.name] = (
90
abs(value) if register.absolute_value else value
91
)
92
- if "version" in register.name:
93
- parsed_data[register.name] = ".".join(
94
- parsed_data[register.name].split(0, 2)
95
- )
+ # if "version" in register.name:
+ # parsed_data[register.name] = ".".join(
+ # parsed_data[register.name].split(0, 2)
+ # )
96
97
except ModbusException as error:
98
_LOGGER.error(
0 commit comments