mirror of
https://github.com/esphome/esphome.git
synced 2025-03-21 10:08:15 +00: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
143 lines
5.1 KiB
C++
143 lines
5.1 KiB
C++
#include "ble_sensor.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/application.h"
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/components/esp32_ble_tracker/esp32_ble_tracker.h"
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ble_client {
|
|
|
|
static const char *const TAG = "ble_sensor";
|
|
|
|
void BLESensor::loop() {}
|
|
|
|
void BLESensor::dump_config() {
|
|
LOG_SENSOR("", "BLE Sensor", this);
|
|
ESP_LOGCONFIG(TAG, " MAC address : %s", this->parent()->address_str().c_str());
|
|
ESP_LOGCONFIG(TAG, " Service UUID : %s", this->service_uuid_.to_string().c_str());
|
|
ESP_LOGCONFIG(TAG, " Characteristic UUID: %s", this->char_uuid_.to_string().c_str());
|
|
ESP_LOGCONFIG(TAG, " Descriptor UUID : %s", this->descr_uuid_.to_string().c_str());
|
|
ESP_LOGCONFIG(TAG, " Notifications : %s", YESNO(this->notify_));
|
|
LOG_UPDATE_INTERVAL(this);
|
|
}
|
|
|
|
void BLESensor::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_OPEN_EVT: {
|
|
if (param->open.status == ESP_GATT_OK) {
|
|
ESP_LOGI(TAG, "[%s] Connected successfully!", this->get_name().c_str());
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
case ESP_GATTC_CLOSE_EVT: {
|
|
ESP_LOGW(TAG, "[%s] Disconnected!", this->get_name().c_str());
|
|
this->status_set_warning();
|
|
this->publish_state(NAN);
|
|
break;
|
|
}
|
|
case ESP_GATTC_SEARCH_CMPL_EVT: {
|
|
this->handle = 0;
|
|
auto *chr = this->parent()->get_characteristic(this->service_uuid_, this->char_uuid_);
|
|
if (chr == nullptr) {
|
|
this->status_set_warning();
|
|
this->publish_state(NAN);
|
|
ESP_LOGW(TAG, "No sensor characteristic found at service %s char %s", this->service_uuid_.to_string().c_str(),
|
|
this->char_uuid_.to_string().c_str());
|
|
break;
|
|
}
|
|
this->handle = chr->handle;
|
|
if (this->descr_uuid_.get_uuid().len > 0) {
|
|
auto *descr = chr->get_descriptor(this->descr_uuid_);
|
|
if (descr == nullptr) {
|
|
this->status_set_warning();
|
|
this->publish_state(NAN);
|
|
ESP_LOGW(TAG, "No sensor descriptor found at service %s char %s descr %s",
|
|
this->service_uuid_.to_string().c_str(), this->char_uuid_.to_string().c_str(),
|
|
this->descr_uuid_.to_string().c_str());
|
|
break;
|
|
}
|
|
this->handle = descr->handle;
|
|
}
|
|
if (this->notify_) {
|
|
auto status = esp_ble_gattc_register_for_notify(this->parent()->get_gattc_if(),
|
|
this->parent()->get_remote_bda(), chr->handle);
|
|
if (status) {
|
|
ESP_LOGW(TAG, "esp_ble_gattc_register_for_notify failed, status=%d", status);
|
|
}
|
|
} else {
|
|
this->node_state = espbt::ClientState::ESTABLISHED;
|
|
}
|
|
break;
|
|
}
|
|
case ESP_GATTC_READ_CHAR_EVT: {
|
|
if (param->read.status != ESP_GATT_OK) {
|
|
ESP_LOGW(TAG, "Error reading char at handle %d, status=%d", param->read.handle, param->read.status);
|
|
break;
|
|
}
|
|
if (param->read.handle == this->handle) {
|
|
this->status_clear_warning();
|
|
this->publish_state(this->parse_data_(param->read.value, param->read.value_len));
|
|
}
|
|
break;
|
|
}
|
|
case ESP_GATTC_NOTIFY_EVT: {
|
|
ESP_LOGD(TAG, "[%s] ESP_GATTC_NOTIFY_EVT: handle=0x%x, value=0x%x", this->get_name().c_str(),
|
|
param->notify.handle, param->notify.value[0]);
|
|
if (param->notify.handle != this->handle)
|
|
break;
|
|
this->publish_state(this->parse_data_(param->notify.value, param->notify.value_len));
|
|
break;
|
|
}
|
|
case ESP_GATTC_REG_FOR_NOTIFY_EVT: {
|
|
if (param->reg_for_notify.handle == this->handle) {
|
|
if (param->reg_for_notify.status != ESP_GATT_OK) {
|
|
ESP_LOGW(TAG, "Error registering for notifications at handle %d, status=%d", param->reg_for_notify.handle,
|
|
param->reg_for_notify.status);
|
|
break;
|
|
}
|
|
this->node_state = espbt::ClientState::ESTABLISHED;
|
|
ESP_LOGD(TAG, "Register for notify on %s complete", this->char_uuid_.to_string().c_str());
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
float BLESensor::parse_data_(uint8_t *value, uint16_t value_len) {
|
|
if (this->data_to_value_func_.has_value()) {
|
|
std::vector<uint8_t> data(value, value + value_len);
|
|
return (*this->data_to_value_func_)(data);
|
|
} else {
|
|
return value[0];
|
|
}
|
|
}
|
|
|
|
void BLESensor::update() {
|
|
if (this->node_state != espbt::ClientState::ESTABLISHED) {
|
|
ESP_LOGW(TAG, "[%s] Cannot poll, not connected", this->get_name().c_str());
|
|
return;
|
|
}
|
|
if (this->handle == 0) {
|
|
ESP_LOGW(TAG, "[%s] Cannot poll, no service or characteristic found", this->get_name().c_str());
|
|
return;
|
|
}
|
|
|
|
auto status = esp_ble_gattc_read_char(this->parent()->get_gattc_if(), this->parent()->get_conn_id(), this->handle,
|
|
ESP_GATT_AUTH_REQ_NONE);
|
|
if (status) {
|
|
this->status_set_warning();
|
|
this->publish_state(NAN);
|
|
ESP_LOGW(TAG, "[%s] Error sending read request for sensor, status=%d", this->get_name().c_str(), status);
|
|
}
|
|
}
|
|
|
|
} // namespace ble_client
|
|
} // namespace esphome
|
|
#endif
|