We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa88e92 commit d5ed8beCopy full SHA for d5ed8be
custom_components/solaredge_modbus/number.py
@@ -140,7 +140,7 @@ def native_value(self) -> float:
140
141
async def async_set_native_value(self, value: float) -> None:
142
"""Change the selected value."""
143
- builder = BinaryPayloadBuilder(byteorder=Endian.Big, wordorder=Endian.Little)
+ builder = BinaryPayloadBuilder(byteorder=Endian.BIG, wordorder=Endian.LITTLE)
144
145
if self._fmt == "u32":
146
builder.add_32bit_uint(int(value))
0 commit comments