mirror of
https://github.com/esphome/esphome.git
synced 2025-02-24 13:58:14 +00:00
20 lines
321 B
C++
20 lines
321 B
C++
#pragma once
|
|
|
|
#include "ble_descriptor.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace esp32_ble_server {
|
|
|
|
class BLE2901 : public BLEDescriptor {
|
|
public:
|
|
BLE2901(const std::string &value);
|
|
BLE2901(const uint8_t *data, size_t length);
|
|
};
|
|
|
|
} // namespace esp32_ble_server
|
|
} // namespace esphome
|
|
|
|
#endif
|