如何通过蓝牙在Raspberry Pi 4和Arduino Nano BLE之间进行读写?

2024-02-21

我能够通过 Rpi4 的 bluepy 和 Arduino Nano BLE 的 ArduinoBLE.h 连接 Raspberry Pi 4 和 Arduino Nano BLE。不幸的是,当我尝试从 Rpi4 写入 Arduino Nano BLE 时,我没有看到读取和写入的预期输出。我没有看到 Arduino Nano BLE 的任何完美示例,因为它是最近发布的内置 BLE 的硬件。如果有人能帮助我实现他们之间的沟通,那将非常有帮助。提前致谢。下面是我的 Raspberry Pi 代码。

import bluepy.btle as btle
p = btle.Peripheral("de:fc:54:87:b0:04")
services=p.getServices()
s = p.getServiceByUUID(list(services)[2].uuid)
c = s.getCharacteristics()[0]
c.write(bytes("2", "utf-8"))
p.disconnect()

我正在使用 Arduino Nano BLE 库中的 Arduino 内置示例。

#include <ArduinoBLE.h>

BLEService ledService("19B10000-E8F2-537E-4F6C-D104768A1214"); // BLE LED Service
// BLE LED Switch Characteristic - custom 128-bit UUID, read and writable by central
BLEByteCharacteristic switchCharacteristic("19B10001-E8F2-537E-4F6C-D104768A1214", BLERead | BLEWrite);

const int ledPin = LED_BUILTIN; // pin to use for the LED

void setup() {
  Serial.begin(9600);
  while (!Serial);
  // set LED pin to output mode
  pinMode(ledPin, OUTPUT);
  // begin initialization
  if (!BLE.begin()) {
    Serial.println("starting BLE failed!");
    while (1);
  }
  // set advertised local name and service UUID:
  BLE.setLocalName("LED");
  BLE.setAdvertisedService(ledService);
  // add the characteristic to the service
  ledService.addCharacteristic(switchCharacteristic);
  // add service
  BLE.addService(ledService);
  // set the initial value for the characeristic:
  switchCharacteristic.writeValue(0);
  // start advertising
  BLE.advertise();
  Serial.println("BLE LED Peripheral");
}

void loop() {
  // listen for BLE peripherals to connect:
  BLEDevice central = BLE.central();
  // if a central is connected to peripheral:
  if (central) {
    Serial.print("Connected to central: ");
    //prints the centrals MAC address:
    Serial.println(central.address());
    // while the central is still connected to peripheral:
    while (central.connected()) {
      // if the remote device wrote to the characteristic,
      // use the value to control the LED:
      if (switchCharacteristic.written()) {
        if (switchCharacteristic.value()) { // any value other than 0
          Serial.println("LED on");
          digitalWrite(ledPin, HIGH); // will turn the LED on
        } else { // a 0 value
          Serial.println(F("LED off"));
          digitalWrite(ledPin, LOW); // will turn the LED off
        }
      }
    }
    // when the central disconnects, print it out:
    Serial.print(F("Disconnected from central: "));
    Serial.println(central.address());
  }
}

我自己发现,一直以来都是写入中的值出了问题。下面是正确的。我希望您现在可以发现这是通过蓝牙无线连接树莓派 4 和 Arduino Nano BLE 的完美解决方案。

c.write(bytes("0001".encode())
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何通过蓝牙在Raspberry Pi 4和Arduino Nano BLE之间进行读写? 的相关文章

随机推荐