ESPHome  2024.4.0
ble_2901.cpp
Go to the documentation of this file.
1 #include "ble_2901.h"
3 
4 #ifdef USE_ESP32
5 
6 namespace esphome {
7 namespace esp32_ble_server {
8 
9 BLE2901::BLE2901(const std::string &value) : BLE2901((uint8_t *) value.data(), value.length()) {}
10 BLE2901::BLE2901(const uint8_t *data, size_t length) : BLEDescriptor(esp32_ble::ESPBTUUID::from_uint16(0x2901)) {
11  this->set_value(data, length);
12  this->permissions_ = ESP_GATT_PERM_READ;
13 }
14 
15 } // namespace esp32_ble_server
16 } // namespace esphome
17 
18 #endif
void set_value(const std::string &value)
uint16_t length
Definition: tt21100.cpp:12
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
BLE2901(const std::string &value)
Definition: ble_2901.cpp:9