Skip to content

Commit 2aedd97

Browse files
committed
Implement ZCL compliant thermostat, fan and thermostat ui attributes
This commit adds ZCL compliant thermostat, fan, and thermostat UI attributes Changes are based on similar ncs implementations. Code was tested with ZCL CLI and simple sample code. Signed-off-by: Adam Ćwiek <adam.cwiek@lerta.energy>
1 parent 8243ed2 commit 2aedd97

File tree

4 files changed

+113
-0
lines changed

4 files changed

+113
-0
lines changed

zboss/include/addons/zboss_api_zcl_addons.h

+3
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
#include "zcl/zb_zcl_scenes_addons.h"
1919
#include "zcl/zb_zcl_on_off_addons.h"
2020
#include "zcl/zb_zcl_temp_measurement_addons.h"
21+
#include "zcl/zb_zcl_thermostat_addons.h"
22+
#include "zcl/zb_zcl_thermostat_ui_addons.h"
23+
#include "zcl/zb_zcl_fan_addons.h"
2124

2225
#endif /* ZBOSS_API_ZCL_ADDONS_H__ */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright (c) 2020 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
5+
*/
6+
7+
#ifndef ZB_ZCL_FAN_ADDONS_H__
8+
#define ZB_ZCL_FAN_ADDONS_H__
9+
10+
#include "zboss_api.h"
11+
12+
/*! \addtogroup zb_zcl_fan_addons */
13+
/*! @{ */
14+
15+
/**@brief Fan cluster attributes according to ZCL Spec 6.4.2.2 */
16+
typedef struct {
17+
uint8_t fan_mode;
18+
uint8_t fan_mode_sequence;
19+
} zb_zcl_fan_attrs_t;
20+
21+
/** @} */
22+
23+
#endif /* ZB_ZCL_FAN_ADDONS_H__ */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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__ */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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_UI_ADDONS_H__
8+
#define ZB_ZCL_THERMOSTAT_UI_ADDONS_H__
9+
10+
#include "zboss_api.h"
11+
12+
/*! \addtogroup zb_zcl_thermostat_ui_addons */
13+
/*! @{ */
14+
15+
/**@brief Thermostat UI cluster attributes according to ZCL Spec 6.6.2.2 */
16+
17+
typedef struct {
18+
uint8_t temperature_display_mode;
19+
uint8_t keypad_lockout;
20+
uint8_t schedule_programming_visibility;
21+
} zb_zcl_thermostat_ui_attrs_t;
22+
23+
/** @} */
24+
25+
#endif /* ZB_ZCL_THERMOSTAT_UI_ADDONS_H__ */

0 commit comments

Comments
 (0)