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
Got the following error when trying to read the device:
Traceback (most recent call last):
File "read_waveplus.py", line 222, in <module>
waveplus.connect()
File "read_waveplus.py", line 124, in connect
SN = parseSerialNumber(ManuData)
File "read_waveplus.py", line 87, in parseSerialNumber
ManuData = bytearray.fromhex(ManuDataHexStr)
TypeError: fromhex() argument 1 must be string or read-only buffer, not None
In the connect method defined on line 113 it turns out that dev.getValueText(255) returns None at some point in the for loop.
Quick Fix:
Rewrite the for-loop with an if-statement to check if the value of ManuData is None. And if that is the case, continue the for-loop without calling parseSerialNumber.
On line 121, change the for-loop to this:
for dev in devices:
ManuData = dev.getValueText(255)
if (ManuData is None):
continue
SN = parseSerialNumber(ManuData)
if (SN == self.SN):
self.MacAddr = dev.addr # exits the while loop on next conditional check
break # exit for loop
The text was updated successfully, but these errors were encountered:
Got the following error when trying to read the device:
In the connect method defined on line 113 it turns out that dev.getValueText(255) returns None at some point in the for loop.
Quick Fix:
Rewrite the for-loop with an if-statement to check if the value of ManuData is None. And if that is the case, continue the for-loop without calling parseSerialNumber.
On line 121, change the for-loop to this:
The text was updated successfully, but these errors were encountered: