我正在使用 PySerial(用于串行通信的 Python API)通过蓝牙向诺基亚手机发送 AT 命令。
import serial
com = serial.Serial()
com.port = 19
com.timeout = 0 #also tried a timeout value greater than 0.
try:
com.open()
# at this point I turn off the phone.
com.write("AT\r\n")
print com.readlines()
except SerialException, e:
print e
就在我 open() com 之后,我关掉了手机。然后,我写(“AT\r\n”)。此时,功能块和运行时挂起。
你有什么解决办法吗?