mirror of
https://github.com/esphome/esphome.git
synced 2025-04-04 01:40:28 +01:00
* Add config to disable auto-connect of BLE client. Correct initialise MAC address of BLE client. * Checkpont * Fixes for automation progress. * Fixes for automation progress. * Checkpoint; fix notify for ble_client * Fix BLE client binary_output * Various fixes * Consider notifications on when receiving REG_FOR event. * Add testing branch to workflow * Add workflow * CI changes * CI changes * CI clang * CI changes * CI changes * Add comment about logging macros * Add test, sanitise comment * Revert testing change to ci config * Update codeowners * Revert ci config change * Fix some state changes * Add default case. * Minor fixes * Add auto-connect to logconfig
37 lines
936 B
C++
37 lines
936 B
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_CLOSE_EVT:
|
|
this->publish_state(this->parent_->enabled);
|
|
break;
|
|
case ESP_GATTC_SEARCH_CMPL_EVT:
|
|
this->node_state = espbt::ClientState::ESTABLISHED;
|
|
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
|