mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-06-01 18:48:28 +02:00
a70a205ace
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
19 lines
236 B
C++
19 lines
236 B
C++
#pragma once
|
|
|
|
#include "ble_descriptor.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace esp32_ble {
|
|
|
|
class BLE2902 : public BLEDescriptor {
|
|
public:
|
|
BLE2902();
|
|
};
|
|
|
|
} // namespace esp32_ble
|
|
} // namespace esphome
|
|
|
|
#endif
|