You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Python 3 the / operator is a floating point division, // for integer division.
this will cause typeError in message.py
low_endian_value_packed.append(register_value & 0xFF)
The text was updated successfully, but these errors were encountered:
def _get_energy_in_lowres(self):
return self.energy_in / 1000
In Python 3 the / operator is a floating point division, // for integer division.
this will cause typeError in message.py
low_endian_value_packed.append(register_value & 0xFF)
The text was updated successfully, but these errors were encountered: