mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
25 lines
420 B
C++
25 lines
420 B
C++
#pragma once
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
#include "esphome/components/esp32_ble_tracker/esp32_ble_tracker.h"
|
|
|
|
namespace esphome {
|
|
namespace esp32_ble_client {
|
|
|
|
namespace espbt = esphome::esp32_ble_tracker;
|
|
|
|
class BLECharacteristic;
|
|
|
|
class BLEDescriptor {
|
|
public:
|
|
espbt::ESPBTUUID uuid;
|
|
uint16_t handle;
|
|
|
|
BLECharacteristic *characteristic;
|
|
};
|
|
|
|
} // namespace esp32_ble_client
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32
|