小編給大家分享一下基于python如何實(shí)現(xiàn)藍(lán)牙通信,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
從策劃到設(shè)計(jì)制作,每一步都追求做到細(xì)膩,制作可持續(xù)發(fā)展的企業(yè)網(wǎng)站。為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、網(wǎng)站策劃、網(wǎng)頁設(shè)計(jì)、主機(jī)域名、虛擬主機(jī)、網(wǎng)絡(luò)營銷、VI設(shè)計(jì)、 網(wǎng)站改版、漏洞修補(bǔ)等服務(wù)。為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,以客戶的口碑塑造優(yōu)易品牌,攜手廣大客戶,共同發(fā)展進(jìn)步。基于python實(shí)現(xiàn)藍(lán)牙通信代碼實(shí)例
linux下安裝
sudo apt-get install python-pip libglib2.0-dev sudo pip install bluepy
官方示例
import btle class MyDelegate(btle.DefaultDelegate): def __init__(self, params): btle.DefaultDelegate.__init__(self)#.. .initialise here def handleNotification(self, cHandle, data): #...perhaps check cHandle#...process 'data' # Initialisation-- -- -- - p = btle.Peripheral(address) p.setDelegate(MyDelegate(params)) # Setup to turn notifications on, e.g.#svc = p.getServiceByUUID(service_uuid)# ch = svc.getCharacteristics(char_uuid)[0]# ch .write(setup_data) # Main loop-- -- -- -- while True: if p.waitForNotifications(1.0): # handleNotification() was called continue print "Waiting..."# Perhaps do something else here
藍(lán)牙通信模塊pybluez的使用
選擇藍(lán)牙通信對象
import bluetooth target_name = "My Device" target_address = None nearby_devices = bluetooth.discover_devices() for bdaddr in nearby_devices: if target_name == bluetooth.lookup_name( bdaddr): target_address = bdaddr break if target_address is not None: print( "found target bluetooth device with address ", target_address) else : print( "could not find target bluetooth device nearby" )
查詢設(shè)備服務(wù)
import bluetooth nearby_devices = bluetooth.discover_devices( lookup_names = True) for addr, name in nearby_devices: print(" %s - %s" % (addr, name)) services = bluetooth.find_service( address = addr) for svc in services: print("Service Name: %s" % svc["name"]) print(" Host: %s" % svc["host"]) print(" Description: %s" % svc[ "description"]) print(" Provided By: %s" % svc[ "provider"]) print(" Protocol: %s" % svc["protocol"]) print(" channel/PSM: %s" % svc["port"]) print(" svc classes: %s " % svc[ "service-classes"]) print(" profiles: %s " % svc["profiles"]) print(" service id: %s " % svc[ "service-id"]) print("")
通過RFCOMM方式進(jìn)行通信
采用類似于socket編程模型的方式進(jìn)行藍(lán)牙通信的編程
1.服務(wù)器端程序
import bluetooth server_sock = bluetooth.BluetoothSocket( bluetooth.RFCOMM) port = 1 server_sock.bind(("", port)) server_sock.listen(1) client_sock, address = server_sock.accept() print "Accepted connection from ", address data = client_sock.recv(1024) print "received [%s]" % data client_sock.close() server_sock.close()
2. 客戶端程序
import bluetooth bd_addr = "01:23:45:67:89:AB" port = 1 sock = bluetooth.BluetoothSocket( bluetooth.RFCOMM) sock.connect((bd_addr, port)) sock.send("hello!!") sock.close()
通過L2CAP方式進(jìn)行通信
L2CAP的sockets方式幾乎等同于RFCOMM的sockets方式,唯一的不同是通過L2CAP的方式,并且端口是0x1001到0x8FFF之間的奇數(shù)端口。默認(rèn)的連接可以傳送的可靠報文是672個字節(jié)。
1.服務(wù)器端程序
import bluetooth server_sock = bluetooth.BluetoothSocket( bluetooth.L2CAP) port = 0x1001 server_sock.bind(("", port)) server_sock.listen(1) client_sock, address = server_sock.accept() print "Accepted connection from ", address data = client_sock.recv(1024) print "received [%s]" % data client_sock.close() server_sock.close()
2.客戶端程序
import bluetooth sock=bluetooth.BluetoothSocket(bluetooth.L2CAP) bd_addr = "01:23:45:67:89:AB" port = 0x1001 sock.connect((bd_addr, port)) sock.send("hello!!") sock.close()
調(diào)整MTU大小
l2cap_sock = bluetooth.BluetoothSocket( bluetooth.L2CAP ) # connect the socket bluetooth.set_l2cap_mtu( l2cap_sock, 65535 )
以上是“基于python如何實(shí)現(xiàn)藍(lán)牙通信”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!