ESPHome 2026.5.0b1
Loading...
Searching...
No Matches
mopeka_ble.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
7
8#ifdef USE_ESP32
9
10namespace esphome::mopeka_ble {
11
13 public:
14 bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override;
15 void set_show_sensors_without_sync(bool show_sensors_without_sync) {
16 show_sensors_without_sync_ = show_sensors_without_sync;
17 }
18
19 protected:
21};
22
23} // namespace esphome::mopeka_ble
24
25#endif
bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override
Parse all incoming BLE payloads to see if it is a Mopeka BLE advertisement.
void set_show_sensors_without_sync(bool show_sensors_without_sync)
Definition mopeka_ble.h:15