mirror of
https://github.com/esphome/esphome.git
synced 2026-02-02 09:47:34 -07:00
38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
#include "zigbee_binary_sensor_zephyr.h"
|
|
#if defined(USE_ZIGBEE) && defined(USE_NRF52) && defined(USE_BINARY_SENSOR)
|
|
#include "esphome/core/log.h"
|
|
extern "C" {
|
|
#include <zboss_api.h>
|
|
#include <zboss_api_addons.h>
|
|
#include <zb_nrf_platform.h>
|
|
#include <zigbee/zigbee_app_utils.h>
|
|
#include <zb_error_to_string.h>
|
|
}
|
|
namespace esphome::zigbee {
|
|
|
|
static const char *const TAG = "zigbee.binary_sensor";
|
|
|
|
ZigbeeBinarySensor::ZigbeeBinarySensor(binary_sensor::BinarySensor *binary_sensor) : binary_sensor_(binary_sensor) {}
|
|
|
|
void ZigbeeBinarySensor::setup() {
|
|
this->binary_sensor_->add_on_state_callback([this](bool state) {
|
|
this->cluster_attributes_->present_value = state ? ZB_TRUE : ZB_FALSE;
|
|
ESP_LOGD(TAG, "Set attribute endpoint: %d, present_value %d", this->endpoint_,
|
|
this->cluster_attributes_->present_value);
|
|
ZB_ZCL_SET_ATTRIBUTE(this->endpoint_, ZB_ZCL_CLUSTER_ID_BINARY_INPUT, ZB_ZCL_CLUSTER_SERVER_ROLE,
|
|
ZB_ZCL_ATTR_BINARY_INPUT_PRESENT_VALUE_ID, &this->cluster_attributes_->present_value,
|
|
ZB_FALSE);
|
|
this->parent_->force_report();
|
|
});
|
|
}
|
|
|
|
void ZigbeeBinarySensor::dump_config() {
|
|
ESP_LOGCONFIG(TAG,
|
|
"Zigbee Binary Sensor\n"
|
|
" Endpoint: %d, present_value %u",
|
|
this->endpoint_, this->cluster_attributes_->present_value);
|
|
}
|
|
|
|
} // namespace esphome::zigbee
|
|
#endif
|