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 7251a53 commit 0723458Copy full SHA for 0723458
insteonplm/messages/extendedSend.py
@@ -157,7 +157,7 @@ def set_checksum(self):
157
for i in range(1, 14):
158
data_sum += self._userdata["d{:d}".format(i)]
159
chksum = 0xFF - (data_sum & 0xFF) + 1
160
- self._userdata["d14"] = chksum
+ self._userdata["d14"] = chksum & 0xff
161
162
def set_crc(self):
163
"""Set Userdata[13] and Userdata[14] to the CRC value."""
setup.py
@@ -11,7 +11,7 @@ def readme():
11
12
setup(
13
name='insteonplm',
14
- version='0.16.6',
+ version='0.16.7,
15
author='David McNett',
16
author_email='nugget@macnugget.org',
17
url='https://github.com/nugget/python-insteonplm',
0 commit comments