pySerial を使用してシリアル ポートからデータを読み取り、以下の文字列を整数に変換しようとしています。
s=ser.read()
int(s)
しかし、私はできません。私が取るエラーは次のとおりです。
Traceback (most recent call last):
File "C:\Documents and Settings\User\Desktop\ser1.py", line 24, in <module>
int(s)
ValueError: invalid literal for int() with base 10: ''
変換方法を知っている人はいますか?前もって感謝します!