1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-08 14:22:21 +01:00
Files
esphome/esphome/components/esp32_ble/ble_2901.cpp
2021-06-09 08:45:51 +12:00

19 lines
453 B
C++

#include "ble_2901.h"
#include "ble_uuid.h"
#ifdef ARDUINO_ARCH_ESP32
namespace esphome {
namespace esp32_ble {
BLE2901::BLE2901(const std::string &value) : BLE2901((uint8_t *) value.data(), value.length()) {}
BLE2901::BLE2901(const uint8_t *data, size_t length) : BLEDescriptor(ESPBTUUID::from_uint16(0x2901)) {
this->set_value(data, length);
this->permissions_ = ESP_GATT_PERM_READ;
}
} // namespace esp32_ble
} // namespace esphome
#endif