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
Use loxxy's solution! They made a pull request that was not merged, but it's a simple fix: Just switch
elif attr == 0x23
typ, val, xdir = unpack('3B', pay)
to:
elif attr == 0x23
## 6 Bytes instead of 3
typ, val, xdir,,,_ = unpack('6B', pay)
I get a struct.error when I run
myo-raw.py
ormyo.py
.I am running this in Ubuntu 16.04.5 LTS. What could be the reason? I want to run Myo in Linux environment.
The text was updated successfully, but these errors were encountered: