Created
December 22, 2024 22:27
-
-
Save jmas/55e7f57f0b8b3029b5d629a0ae2a222f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This example code is in the Public Domain (or CC0 licensed, at your option.) | |
// By Evandro Copercini - 2018 | |
// | |
// This example creates a bridge between Serial and Classical Bluetooth (SPP) | |
// and also demonstrate that SerialBT have the same functionalities of a normal Serial | |
// Note: Pairing is authenticated automatically by this device | |
#include "BluetoothSerial.h" | |
#include "esp_bt.h" | |
String device_name = "ESP32-BT-Slave"; | |
// Check if Bluetooth is available | |
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) | |
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it | |
#endif | |
// Check Serial Port Profile | |
#if !defined(CONFIG_BT_SPP_ENABLED) | |
#error Serial Port Profile for Bluetooth is not available or not enabled. It is only available for the ESP32 chip. | |
#endif | |
BluetoothSerial SerialBT; | |
bool isClientConnected = false; | |
void setup() { | |
Serial.begin(115200); | |
esp_log_level_set("*", ESP_LOG_VERBOSE); | |
esp_bt_controller_mem_release(ESP_BT_MODE_BLE); | |
if (!SerialBT.begin(device_name)) { //Bluetooth device name | |
Serial.println("Bluetooth не запущений!"); | |
while (1); | |
} else { | |
Serial.println("Bluetooth запущений успішно!"); | |
} | |
SerialBT.deleteAllBondedDevices(); // Uncomment this to delete paired devices; Must be called after begin | |
Serial.printf("The device with name \"%s\" is started.\nNow you can pair it with Bluetooth!\n", device_name.c_str()); | |
} | |
void loop() { | |
// Перевірка, чи підключений клієнт | |
if (SerialBT.hasClient() && !isClientConnected) { | |
isClientConnected = true; | |
Serial.println("Клієнт підключився!"); | |
// Відправляємо вітальне повідомлення | |
SerialBT.println("Welcome to ESP32 Bluetooth!"); | |
} | |
// Якщо з’єднання втрачене | |
if (!SerialBT.hasClient() && isClientConnected) { | |
isClientConnected = false; | |
Serial.println("Клієнт відключився!"); | |
} | |
if (Serial.available()) { | |
SerialBT.write(Serial.read()); | |
} | |
if (SerialBT.available()) { | |
Serial.write(SerialBT.read()); | |
} | |
// Надсилаємо "пінг" кожні 2 секунди | |
// static unsigned long lastPingTime = 0; | |
// if (millis() - lastPingTime > 2000) { | |
// SerialBT.println("Ping from ESP32!"); | |
// lastPingTime = millis(); | |
// } | |
delay(20); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment