0

嘿家伙,

如何从 python 应用程序通过蓝牙发送 AT 命令?

操作系统:fedora 8

有人请用代码治愈我吗?

我需要导入哪个包?

从哪里可以下载?

4

2 回答 2

1

我觉得这样更好…………

import bluetooth 
sockfd = bluetooth.BluetoothSocket(bluetooth.RFCOMM) 
sockfd.connect(('00:24:7E:9E:55:0D', 1)) # BT Address 
sockfd.send('ATZ\r') 
time.sleep(1) 
sockfd.send(chr(26)) 
sockfd.close()
于 2010-03-10T09:51:44.260 回答
1

要通过蓝牙连接到您的 IP 调制解调器,您需要使用蓝牙 rfcomm 驱动程序:

michael@challenger:~> cat /etc/bluetooth/rfcomm.conf  
rfcomm0 {
        # Automatically bind the device at startup
        bind yes;
        # Bluetooth address of the device
        device 00:1C:CC:XX:XX:XX;
        # RFCOMM channel for the connection
        channel 1;
        # Description of the connection
        comment "Blackberry";
}

这是我用于我的设置 - YMMV。

michael@challenger:~> cu -l /dev/rfcomm0
Connected.
ATI
Research in Motion BlackBerry IP Modem

OK

一旦有了 rfcomm0 端口,您就可以将该端口视为标准串行端口,然后就可以开始使用了。

于 2010-01-29T17:45:30.613 回答