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 has been 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_byte
depending on the device type.Later in the
device_io_result
class, 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_ubyte
to 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.
The text was updated successfully, but these errors were encountered: