Fix D_WORD -> U_WORD

This commit is contained in:
Antonin Delpeuch 2023-08-04 08:35:49 +02:00
parent cf3fa34441
commit 87a3f88f05

View file

@ -44,7 +44,7 @@ Another option to debug
See the [official variable list from the manufacturer](https://shop.systemair.com/upload/assets/SAVE_MODBUS_VARIABLE_LIST_20210301_REV36.PDF?a94f4fe0).
To add a new register to the node, update `ventilation.yaml` with the additional register. The address found in the documentation needs to be converted to hexadecimal and you need to substract 1 to account for the different numbering conventions.
The documentation indicates whether a register is signed (`I*`) or unsigned (`I`), which determines the value type to use: `S_WORD` or `D_WORD` respectively.
The documentation indicates whether a register is signed (`I*`) or unsigned (`I`), which determines the value type to use: `S_WORD` or `U_WORD` respectively.
## Misc