Python无法打开端口

时间:2016-08-08 10:03:06

标签: python linux python-2.7 bluetooth

我想在python中与我的串口通信。我为linux安装了pyserial:

through

它出现以下错误:

import thread
import serial
PORT = '/dev/rfcomm0'
BAUDRATE = 921600
TIMEOUT = 1  
port = serial.Serial(port=PORT, baudrate=BAUDRATE, timeout=TIMEOUT)
port.open()
...
port.close()

2 个答案:

答案 0 :(得分:0)

/ dev / rfcomm0似乎是BlueZ注册的虚拟设备端口。 你能在系统上列出这个设备吗?你的蓝牙启动良好吗?

答案 1 :(得分:-2)

只有您必须这样做:

sudo chmod 777 /dev/rfcomm0 

它已经解决了