pythonでシリアル通信を試みています.
Googleで色々調べて以下のようなコードを実行したのですがエラーが出てしまいます。詳しい方、お力をお借りしたいです。
python
1import serial 2 3ser = serial.Serial('/dev/tty.usbserial-1410',115200,timeout=None) 4ser.write("01 06 00 7D 00 08 18 14") 5ser.close() 6
エラーは以下です。
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/serial/serialposix.py", line 322, in open
self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK)
OSError: [Errno 16] Resource busy: '/dev/tty.usbserial-1410'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/masashi/pyworks/pyserial1.py", line 3, in <module>
ser = serial.Serial('/dev/tty.usbserial-1410',115200,timeout=None)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/serial/serialutil.py", line 244, in init
self.open()
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/serial/serialposix.py", line 325, in open
raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg))
serial.serialutil.SerialException: [Errno 16] could not open port /dev/tty.usbserial-1410: [Errno 16] Resource busy: '/dev/tty.usbserial-1410'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。