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
{{ message }}
This repository was archived by the owner on May 9, 2023. It is now read-only.
In the device class, you initialize the receive buffer as 12 or 24 signed bytes
c_bytedepending on the device type.Later in the
device_io_resultclass, that data is passed and converted tobytes, which causes an errorThis happened because signed bytes are used for the recv buffer, please consider to use
c_ubyteto fix this issue.When capturing strokes, if you are using a debugger for example, you will not be able to use your devices until you restart your computer.