mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
aec02afcdc
* Fix clang-tidy header filter * Allow private members * Fix clang-tidy detections * Run clang-format * Fix remaining detections * Fix graph * Run clang-format
39 lines
1 KiB
C++
39 lines
1 KiB
C++
#include "ble_switch.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/application.h"
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ble_client {
|
|
|
|
static const char *const TAG = "ble_switch";
|
|
|
|
void BLEClientSwitch::write_state(bool state) {
|
|
this->parent_->set_enabled(state);
|
|
this->publish_state(state);
|
|
}
|
|
|
|
void BLEClientSwitch::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
|
|
esp_ble_gattc_cb_param_t *param) {
|
|
switch (event) {
|
|
case ESP_GATTC_REG_EVT:
|
|
this->publish_state(this->parent_->enabled);
|
|
break;
|
|
case ESP_GATTC_OPEN_EVT:
|
|
this->node_state = espbt::ClientState::ESTABLISHED;
|
|
break;
|
|
case ESP_GATTC_DISCONNECT_EVT:
|
|
this->node_state = espbt::ClientState::IDLE;
|
|
this->publish_state(this->parent_->enabled);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void BLEClientSwitch::dump_config() { LOG_SWITCH("", "BLE Client Switch", this); }
|
|
|
|
} // namespace ble_client
|
|
} // namespace esphome
|
|
#endif
|