Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement ZCL compliant thermostat, fan and thermostat ui attributes #358

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions zboss/include/addons/zboss_api_zcl_addons.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
#include "zcl/zb_zcl_scenes_addons.h"
#include "zcl/zb_zcl_on_off_addons.h"
#include "zcl/zb_zcl_temp_measurement_addons.h"
#include "zcl/zb_zcl_thermostat_addons.h"
#include "zcl/zb_zcl_thermostat_ui_addons.h"
#include "zcl/zb_zcl_fan_addons.h"

#endif /* ZBOSS_API_ZCL_ADDONS_H__ */
23 changes: 23 additions & 0 deletions zboss/include/addons/zcl/zb_zcl_fan_addons.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* Copyright (c) 2020 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
*/

#ifndef ZB_ZCL_FAN_ADDONS_H__
#define ZB_ZCL_FAN_ADDONS_H__

#include "zboss_api.h"

/*! \addtogroup zb_zcl_fan_addons */
/*! @{ */

/**@brief Fan cluster attributes according to ZCL Spec 6.4.2.2 */
typedef struct {
uint8_t fan_mode;
uint8_t fan_mode_sequence;
} zb_zcl_fan_attrs_t;

/** @} */

#endif /* ZB_ZCL_FAN_ADDONS_H__ */
62 changes: 62 additions & 0 deletions zboss/include/addons/zcl/zb_zcl_thermostat_addons.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
* Copyright (c) 2020 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
*/

#ifndef ZB_ZCL_THERMOSTAT_ADDONS_H__
#define ZB_ZCL_THERMOSTAT_ADDONS_H__

#include "zboss_api.h"

/*! \addtogroup zb_zcl_thermostat_addons */
/*! @{ */

/**@brief Thermostat Information cluster attributes according to ZCL Spec 6.3.2.2.1. */
typedef struct {
zb_int16_t local_temperature;
zb_int16_t outdoor_temperature;
zb_uint8_t occupancy;
zb_int16_t abs_min_heat_setpoint_imit;
zb_int16_t abs_max_heat_setpoint_limit;
zb_int16_t abs_min_cool_setpoint_limit;
zb_int16_t abs_max_cool_setpoint_limit;
zb_int16_t PI_cooling_demand;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PICoolingDemand field has an uint8 type.

zb_int16_t PI_heating_demand;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PIHeatingDemand field has an uint8 type.

zb_uint8_t HVAC_system_type_configuration;
} zb_zcl_thermostat_info_attrs_t;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This list goes to the ATTRS_LIST_EXT macro, thus should have the attrs_ext_t suffix.


/**@brief Thermostat Settings cluster attributes according to ZCL Spec 6.3.2.2.2. */
typedef struct {
zb_int8_t local_temperature_calibration;
zb_int16_t occupied_cooling_setpoint;
zb_int16_t occupied_heating_setpoint;
zb_int16_t unoccupied_cooling_setpoint;
zb_int16_t unoccupied_heating_setpoint;
zb_int16_t min_heat_setpoint_limit;
zb_int16_t max_heat_setpoint_limit;
zb_int16_t min_cool_setpoint_limit;
zb_int16_t max_cool_setpoint_limit;
zb_int8_t min_setpoint_dead_band;
zb_uint8_t remote_sensing;
zb_uint8_t control_sequence_of_operation;
zb_uint8_t system_mode;
zb_uint8_t alarm_mask;
zb_uint8_t thermostat_running_mode;
} zb_zcl_thermostat_settings_attrs_t;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This list goes to the ATTRS_LIST_EXT macro, thus should have the attrs_ext_t suffix.


/**@brief Thermostat Thermostat Schedule & HVAC Relay
cluster attributes according to ZCL Spec 6.3.2.2.2. */
typedef struct {
zb_uint8_t start_of_week;
zb_uint8_t number_of_weekly_transitions;
zb_uint8_t number_of_daily_transitions;
zb_uint8_t temperature_setpoint_hold;
zb_uint16_t temperature_setpoint_hold_ouration;
zb_uint8_t thermostat_programming_operation_mode;
zb_int16_t thermostat_running_state;
} zb_zcl_thermostat_schedule_and_HVAC_attrs_t;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This list goes to the ATTRS_LIST_EXT macro, thus should have the attrs_ext_t suffix.


/** @} */

#endif /* ZB_ZCL_THERMOSTAT_ADDONS_H__ */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

General: I do agree with you. Even though the ZB_ZCL_DECLARE_THERMOSTAT_ATTRIB_LIST_EXT macro does not require all fields to be present, it is better to provide a complete list in type definitions.

25 changes: 25 additions & 0 deletions zboss/include/addons/zcl/zb_zcl_thermostat_ui_addons.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
* Copyright (c) 2020 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
*/

#ifndef ZB_ZCL_THERMOSTAT_UI_ADDONS_H__
#define ZB_ZCL_THERMOSTAT_UI_ADDONS_H__

#include "zboss_api.h"

/*! \addtogroup zb_zcl_thermostat_ui_addons */
/*! @{ */

/**@brief Thermostat UI cluster attributes according to ZCL Spec 6.6.2.2 */

typedef struct {
uint8_t temperature_display_mode;
uint8_t keypad_lockout;
uint8_t schedule_programming_visibility;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ScheduleProgrammingVisibility attribute is optional, thus it is not required by the ZB_ZCL_DECLARE_THERMOSTAT_UI_CONFIG_ATTRIB_LIST macro.
Generally, the full list of attributes should have attrs_ext_t suffix and be passed to the macro with ATTRIB_LIST_EXT suffix.

Do you use the schedule_programming_visibility field? If so, could you provide macro definitions for the extended variant?

  • ZB_ZCL_DECLARE_THERMOSTAT_UI_CONFIG_ATTRIB_LIST_EXT
  • ZB_SET_ATTR_DESCR_WITH_ZB_ZCL_ATTR_THERMOSTAT_UI_CONFIG_SCHEDULE_PROGRAMMING_VISIBILITY_ID

If not, please simply remove this field or rename the type definition 🙂

} zb_zcl_thermostat_ui_attrs_t;

/** @} */

#endif /* ZB_ZCL_THERMOSTAT_UI_ADDONS_H__ */
Loading