93 lines
3 KiB
C++
93 lines
3 KiB
C++
// Copyright 2025 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
/* Class of Zigbee Analog sensor endpoint inherited from common EP class */
|
|
|
|
#pragma once
|
|
|
|
#include "soc/soc_caps.h"
|
|
#include "sdkconfig.h"
|
|
#if CONFIG_ZB_ENABLED
|
|
|
|
#include "ZigbeeEP.h"
|
|
#include "ha/esp_zigbee_ha_standard.h"
|
|
|
|
//enum for bits set to check what analog cluster were added
|
|
enum zigbee_analog_clusters {
|
|
ANALOG_INPUT = 1,
|
|
ANALOG_OUTPUT = 2
|
|
};
|
|
|
|
typedef struct zigbee_analog_cfg_s {
|
|
esp_zb_basic_cluster_cfg_t basic_cfg;
|
|
esp_zb_identify_cluster_cfg_t identify_cfg;
|
|
esp_zb_analog_output_cluster_cfg_t analog_output_cfg;
|
|
esp_zb_analog_input_cluster_cfg_t analog_input_cfg;
|
|
} zigbee_analog_cfg_t;
|
|
|
|
class ZigbeeAnalog : public ZigbeeEP {
|
|
public:
|
|
ZigbeeAnalog(uint8_t endpoint);
|
|
~ZigbeeAnalog() {}
|
|
|
|
// Add analog clusters
|
|
bool addAnalogInput();
|
|
bool addAnalogOutput();
|
|
|
|
// Set the application type and description for the analog input
|
|
bool setAnalogInputApplication(uint32_t application_type); // Check esp_zigbee_zcl_analog_input.h for application type values
|
|
bool setAnalogInputDescription(const char *description);
|
|
bool setAnalogInputResolution(float resolution);
|
|
|
|
// Set the application type and description for the analog output
|
|
bool setAnalogOutputApplication(uint32_t application_type); // Check esp_zigbee_zcl_analog_output.h for application type values
|
|
bool setAnalogOutputDescription(const char *description);
|
|
bool setAnalogOutputResolution(float resolution);
|
|
|
|
// Set the min and max values for the analog Input/Output
|
|
bool setAnalogOutputMinMax(float min, float max);
|
|
bool setAnalogInputMinMax(float min, float max);
|
|
|
|
// Use to set a cb function to be called on analog output change
|
|
void onAnalogOutputChange(void (*callback)(float analog)) {
|
|
_on_analog_output_change = callback;
|
|
}
|
|
|
|
// Set the Analog Input/Output value
|
|
bool setAnalogInput(float analog);
|
|
bool setAnalogOutput(float analog);
|
|
|
|
// Get the Analog Output value
|
|
float getAnalogOutput() {
|
|
return _output_state;
|
|
}
|
|
|
|
// Report Analog Input/Output
|
|
bool reportAnalogInput();
|
|
bool reportAnalogOutput();
|
|
|
|
// Set reporting for Analog Input
|
|
bool setAnalogInputReporting(uint16_t min_interval, uint16_t max_interval, float delta);
|
|
|
|
private:
|
|
void zbAttributeSet(const esp_zb_zcl_set_attr_value_message_t *message) override;
|
|
|
|
void (*_on_analog_output_change)(float);
|
|
void analogOutputChanged();
|
|
|
|
uint8_t _analog_clusters;
|
|
float _output_state;
|
|
};
|
|
|
|
#endif // CONFIG_ZB_ENABLED
|