esp32用蓝牙控制另一个esp32灯代码,arduino
时间: 2023-08-19 11:04:06 浏览: 201
好的,以下是基于Arduino的ESP32蓝牙控制代码,可以通过蓝牙控制另一个ESP32板子上的灯:
```
#include <BluetoothSerial.h>
#define LED_PIN 2
BluetoothSerial SerialBT;
void setup() {
Serial.begin(9600);
pinMode(LED_PIN, OUTPUT);
SerialBT.begin("ESP32_LED_Control");
Serial.println("Bluetooth device is ready to pair.");
}
void loop() {
if (SerialBT.available()) {
char command = SerialBT.read();
if (command == '1') {
digitalWrite(LED_PIN, HIGH);
SerialBT.println("LED turned on.");
}
else if (command == '0') {
digitalWrite(LED_PIN, LOW);
SerialBT.println("LED turned off.");
}
else {
SerialBT.println("Invalid command.");
}
}
}
```
这段代码实现了以下功能:
- 通过蓝牙串口通信控制LED灯的开关。
- 当接收到字符 '1' 时,将LED灯的状态设置为HIGH,同时发送消息 "LED turned on."。
- 当接收到字符 '0' 时,将LED灯的状态设置为LOW,同时发送消息 "LED turned off."。
- 当接收到其他字符时,发送消息 "Invalid command."。
可以通过安装蓝牙串口调试工具来测试该代码,例如在Android系统中安装“Serial Bluetooth Terminal”应用程序。在连接上ESP32板子后,可以通过发送字符 '1' 或 '0' 来控制LED灯的开关。
阅读全文