精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

電子發燒友App

硬聲App

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示
創作
電子發燒友網>電子資料下載>電子資料>如何使用BleuIO的多連接功能

如何使用BleuIO的多連接功能

2023-06-26 | zip | 0.00 MB | 次下載 | 免費

資料介紹

描述

藍牙低功耗技術提供了一種連接智能設備的合適方式。物聯網IoT)或物聯網(Internet of Things)這個詞帶來了新技術,在連接時代改變和創造世界。物聯網表示一切都已連接,而藍牙使工作變得更加容易。一臺中央設備可以啟動并保持與多個低功耗藍牙外圍設備的連接。

BleuIO 是一種藍牙低功耗解決方案,可以以最快、最簡單的方式創建新的 BLE 5.0 應用程序。使用此 BleuIO 的多連接功能,我們可以輕松連接到多個 BLE 設備并在它們之間傳輸數據。

本文將解釋如何使用 BleuIO 的多連接功能,連接多個 BLE 設備并在它們之間傳輸數據。我們將為這個項目使用三個 BleuIO 加密狗:一個中央和兩個外圍。中央加密狗將連接到外圍設備并同時發送數據。

我們將創建一個簡單的 python 腳本來幫助我們完成任務。

要求 :

任務:

步驟1:

讓我們創建一個名為py_serial_transfer.py的 python 文件并復制以下代碼。

源代碼也可以在 GitHub 上獲得

https://github.com/smart-sensor-devices-ab/ble_multi_connection_example.git

#!/usr/bin/python
# -*- coding: utf-8 -*-
import serial
import time
import string
import random

target_dongle_mac_address = '[0]40:48:FD:E5:2D:AF'  # Change this to the 1st peripheral's mac address.
target_dongle_mac_address2 = '[0]40:48:FD:E5:2D:B5'  # Change this to the 2nd peripheral's mac address.
your_com_port = 'COM7'  # Change this to the com port your dongle is connected to.

connecting_to_dongle = True
trying_to_connect = False
trying_to_connect2 = False


def id_generator(size=10, chars=string.ascii_uppercase + string.digits):
    return ''.join(random.choice(chars) for _ in range(size))


print 'Connecting to dongle...'

# Trying to connect to dongle until connected. Make sure the port and baudrate is the same as your dongle.
# You can check in the device manager to see what port then right-click and choose properties then the Port Settings
# tab to see the other settings

while connecting_to_dongle:
    try:
        console = serial.Serial(
            port=your_com_port,
            baudrate=57600,
            parity='N',
            stopbits=1,
            bytesize=8,
            timeout=0,
            )
        if console.is_open.__bool__():
            connecting_to_dongle = False
    except:
        print 'Dongle not connected. Please reconnect Dongle.'
        time.sleep(5)

print 'Connected to Dongle.'

connected = '0'
connected2 = '0'
while 1 and console.is_open.__bool__():
    console.write(str.encode('AT+DUAL'))
    console.write('\r'.encode())
    time.sleep(0.1)
    print 'Putting dongle in Dual role and trying to connect to other dongle.'
    while connected == '0':
        time.sleep(0.5)
        if not trying_to_connect:
            console.write(str.encode('AT+GAPCONNECT='))
            console.write(str.encode(target_dongle_mac_address))
            console.write('\r'.encode())
            trying_to_connect = True
        dongle_output2 = console.read(console.in_waiting)
        time.sleep(2)
        print 'Trying to connect to Peripheral 1...'
        if not dongle_output2.isspace():
            if dongle_output2.decode().__contains__('\r\nCONNECTED.'):
                connected = '1'
                print 'Connected to 1st device!'
                time.sleep(5)
            if dongle_output2.decode().__contains__('\r\nDISCONNECTED.'
                    ):
                connected = '0'
                print 'Disconnected!'
                trying_to_connect = False
            dongle_output2 = ' '
    while connected2 == '0':
        time.sleep(0.5)
        if not trying_to_connect2:
            console.write(str.encode('AT+GAPCONNECT='))
            console.write(str.encode(target_dongle_mac_address2))
            console.write('\r'.encode())
            trying_to_connect2 = True
        dongle_output2 = console.read(console.in_waiting)
        time.sleep(2)
        print 'Trying to connect to Peripheral 2...'
        if not dongle_output2.isspace():
            if dongle_output2.decode().__contains__('\r\nCONNECTED.'):
                connected2 = '1'
                print 'Connected to 2nd device!'
                time.sleep(5)
            if dongle_output2.decode().__contains__('\r\nDISCONNECTED.'
                    ):
                connected2 = '0'
                print 'Disconnected!'
                trying_to_connect2 = False
            dongle_output2 = ' '
    while connected == '1' and connected2 == '1':
        dongle_output3 = console.read(console.in_waiting)
        delay = 10
        close_time = time.time() + delay
        i = 0
        while True:
            myConIndex = ('0000' if i % 2 == 0 else '0001')
            console.write(str.encode('AT+TARGETCONN='))
            console.write(str.encode(myConIndex))
            console.write('\r'.encode())
            console.write(str.encode('AT+SPSSEND='))
            console.write(str.encode(id_generator() + '-' + myConIndex))
            console.write('\r'.encode())
            time.sleep(0.2)
            i += 1
            if time.time() > close_time:
                break
        console.write(str.encode('AT+SPSSEND=[DONE]\r'))
        time.sleep(0.2)
        print 'Sending complete!\r\n'
        print 'Exiting script...'
        exit()

該腳本將用于中央 BleuIO 加密狗。我們需要找到每個加密狗的端口號和外設mac地址。

第2步:

在您的 PC 上連接三個 BleuIO 加密狗。您可以在三臺不同的 PC 或 Raspberry Pi 上執行此過程。

為此項目,我已將中央和外圍設備連接到一臺 PC。

連接加密狗后,打開設備管理器(windows)找到每個加密狗的端口。

?

pYYBAGNY6VuAJLZVAAEBmgNCNBo220.png
?

在我的 PC 上,我在端口 7、8 和 18 上連接了 BleuIO 加密狗。

讓我們以 COM7 為中心,COM8 和 COM18 為外圍。

現在打開腳本并在第 12 行設置端口號。

我們還需要知道外圍加密狗的 MAC 地址。

為此,我們可以簡單地使用AT+ADVSTART命令宣傳加密狗。

poYBAGNY6V2AD3OgAABmHK0iKvY133.jpg
?

對其他外圍加密狗執行相同的過程。

現在這兩個外圍加密狗都在做廣告。我們可以從中心進行間隙掃描以找到他們的 MAC 地址。

現在尋找名為BleuIO 的加密狗。

pYYBAGNY6WKAXhrwAAFf6-9QNIw380.jpg
?

使用外設 mac 地址更新腳本(第 6、9 行)

第 3 步:

現在讓我們運行腳本。

?

?

?


下載該資料的人也在下載 下載該資料的人還在閱讀
更多 >

評論

查看更多

下載排行

本周

  1. 1山景DSP芯片AP8248A2數據手冊
  2. 1.06 MB  |  532次下載  |  免費
  3. 2RK3399完整板原理圖(支持平板,盒子VR)
  4. 3.28 MB  |  339次下載  |  免費
  5. 3TC358743XBG評估板參考手冊
  6. 1.36 MB  |  330次下載  |  免費
  7. 4DFM軟件使用教程
  8. 0.84 MB  |  295次下載  |  免費
  9. 5元宇宙深度解析—未來的未來-風口還是泡沫
  10. 6.40 MB  |  227次下載  |  免費
  11. 6迪文DGUS開發指南
  12. 31.67 MB  |  194次下載  |  免費
  13. 7元宇宙底層硬件系列報告
  14. 13.42 MB  |  182次下載  |  免費
  15. 8FP5207XR-G1中文應用手冊
  16. 1.09 MB  |  178次下載  |  免費

本月

  1. 1OrCAD10.5下載OrCAD10.5中文版軟件
  2. 0.00 MB  |  234315次下載  |  免費
  3. 2555集成電路應用800例(新編版)
  4. 0.00 MB  |  33566次下載  |  免費
  5. 3接口電路圖大全
  6. 未知  |  30323次下載  |  免費
  7. 4開關電源設計實例指南
  8. 未知  |  21549次下載  |  免費
  9. 5電氣工程師手冊免費下載(新編第二版pdf電子書)
  10. 0.00 MB  |  15349次下載  |  免費
  11. 6數字電路基礎pdf(下載)
  12. 未知  |  13750次下載  |  免費
  13. 7電子制作實例集錦 下載
  14. 未知  |  8113次下載  |  免費
  15. 8《LED驅動電路設計》 溫德爾著
  16. 0.00 MB  |  6656次下載  |  免費

總榜

  1. 1matlab軟件下載入口
  2. 未知  |  935054次下載  |  免費
  3. 2protel99se軟件下載(可英文版轉中文版)
  4. 78.1 MB  |  537798次下載  |  免費
  5. 3MATLAB 7.1 下載 (含軟件介紹)
  6. 未知  |  420027次下載  |  免費
  7. 4OrCAD10.5下載OrCAD10.5中文版軟件
  8. 0.00 MB  |  234315次下載  |  免費
  9. 5Altium DXP2002下載入口
  10. 未知  |  233046次下載  |  免費
  11. 6電路仿真軟件multisim 10.0免費下載
  12. 340992  |  191187次下載  |  免費
  13. 7十天學會AVR單片機與C語言視頻教程 下載
  14. 158M  |  183279次下載  |  免費
  15. 8proe5.0野火版下載(中文版免費下載)
  16. 未知  |  138040次下載  |  免費