-2
raspbianがインストールされたraspberry pi 3に接続されたUSBデバイスに書き込もうとしています。cython hidapi書き込みエラー
エラー:このコードで間違っ
File "<stdin>", line 1
h.write([81 80 73 71 83 183 169 13])
^
SyntaxError: invalid syntax
コード
#!/usr/bin/python
import hid
h = hid.device()
h.open(0x0665, 0x5161)
h.set_nonblocking(1) // Returns 0
h.write([0, 63, 35, 35] + [0] * 61) // Returns -1
h.write([81 80 73 71 83 183 169 13]) //Throws error above.
いただきましたか?ライブラリ内のドキュメントに基づいて、整数リストを受け取ります。
私は、参考文献としてこれを使用:https://github.com/trezor/cython-hidapi/blob/master/try.py