|
| 1 | +/* |
| 2 | + * Copyright (c) 2020 Nordic Semiconductor ASA |
| 3 | + * |
| 4 | + * SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic |
| 5 | + */ |
| 6 | + |
| 7 | +#ifndef ZB_ZCL_THERMOSTAT_ADDONS_H__ |
| 8 | +#define ZB_ZCL_THERMOSTAT_ADDONS_H__ |
| 9 | + |
| 10 | +#include "zboss_api.h" |
| 11 | + |
| 12 | +/*! \addtogroup zb_zcl_thermostat_addons */ |
| 13 | +/*! @{ */ |
| 14 | + |
| 15 | +/**@brief Thermostat Information cluster attributes according to ZCL Spec 6.3.2.2.1. */ |
| 16 | +typedef struct { |
| 17 | + zb_int16_t local_temperature; |
| 18 | + zb_int16_t outdoor_temperature; |
| 19 | + zb_uint8_t occupancy; |
| 20 | + zb_int16_t abs_min_heat_setpoint_imit; |
| 21 | + zb_int16_t abs_max_heat_setpoint_limit; |
| 22 | + zb_int16_t abs_min_cool_setpoint_limit; |
| 23 | + zb_int16_t abs_max_cool_setpoint_limit; |
| 24 | + zb_int16_t PI_cooling_demand; |
| 25 | + zb_int16_t PI_heating_demand; |
| 26 | + zb_uint8_t HVAC_system_type_configuration; |
| 27 | +} zb_zcl_thermostat_info_attrs_t; |
| 28 | + |
| 29 | +/**@brief Thermostat Settings cluster attributes according to ZCL Spec 6.3.2.2.2. */ |
| 30 | +typedef struct { |
| 31 | + zb_int8_t local_temperature_calibration; |
| 32 | + zb_int16_t occupied_cooling_setpoint; |
| 33 | + zb_int16_t occupied_heating_setpoint; |
| 34 | + zb_int16_t unoccupied_cooling_setpoint; |
| 35 | + zb_int16_t unoccupied_heating_setpoint; |
| 36 | + zb_int16_t min_heat_setpoint_limit; |
| 37 | + zb_int16_t max_heat_setpoint_limit; |
| 38 | + zb_int16_t min_cool_setpoint_limit; |
| 39 | + zb_int16_t max_cool_setpoint_limit; |
| 40 | + zb_int8_t min_setpoint_dead_band; |
| 41 | + zb_uint8_t remote_sensing; |
| 42 | + zb_uint8_t control_sequence_of_operation; |
| 43 | + zb_uint8_t system_mode; |
| 44 | + zb_uint8_t alarm_mask; |
| 45 | + zb_uint8_t thermostat_running_mode; |
| 46 | +} zb_zcl_thermostat_settings_attrs_t; |
| 47 | + |
| 48 | +/**@brief Thermostat Thermostat Schedule & HVAC Relay |
| 49 | + cluster attributes according to ZCL Spec 6.3.2.2.2. */ |
| 50 | +typedef struct { |
| 51 | + zb_uint8_t start_of_week; |
| 52 | + zb_uint8_t number_of_weekly_transitions; |
| 53 | + zb_uint8_t number_of_daily_transitions; |
| 54 | + zb_uint8_t temperature_setpoint_hold; |
| 55 | + zb_uint16_t temperature_setpoint_hold_ouration; |
| 56 | + zb_uint8_t thermostat_programming_operation_mode; |
| 57 | + zb_int16_t thermostat_running_state; |
| 58 | +} zb_zcl_thermostat_schedule_and_HVAC_attrs_t; |
| 59 | + |
| 60 | +/** @} */ |
| 61 | + |
| 62 | +#endif /* ZB_ZCL_THERMOSTAT_ADDONS_H__ */ |
0 commit comments