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
the program aborted with an error when it couldn't find the start bytes and mStart became -1. I added the following to line 38 in smartmeter.py to avoid it:
if ((mStart + mLen + 2) <= len(data) and mStart > 0):
Regards, Peter
The text was updated successfully, but these errors were encountered:
Hello,
the program aborted with an error when it couldn't find the start bytes and mStart became -1. I added the following to line 38 in smartmeter.py to avoid it:
if ((mStart + mLen + 2) <= len(data) and mStart > 0):
Regards, Peter
The text was updated successfully, but these errors were encountered: