forked from SiliconLabs/UnifySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SiliconLabsGH-46: Humidity Control Operating State CC
ZPC implementation only Fix documentation Forwarded: SiliconLabs#46 Bug-SiliconLabs: UIC-3068 Bug-Github: SiliconLabs#46
- Loading branch information
1 parent
a3f6881
commit ebe51f1
Showing
8 changed files
with
425 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
155 changes: 155 additions & 0 deletions
155
...mponents/zwave_command_classes/src/zwave_command_class_humidity_control_operating_state.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
|
||
/****************************************************************************** | ||
* # License | ||
* <b>Copyright 2024 Silicon Laboratories Inc. www.silabs.com</b> | ||
****************************************************************************** | ||
* The licensor of this software is Silicon Laboratories Inc. Your use of this | ||
* software is governed by the terms of Silicon Labs Master Software License | ||
* Agreement (MSLA) available at | ||
* www.silabs.com/about-us/legal/master-software-license-agreement. This | ||
* software is distributed to you in Source Code format and is governed by the | ||
* sections of the MSLA applicable to Source Code. | ||
* | ||
*****************************************************************************/ | ||
|
||
// System | ||
#include <stdlib.h> | ||
|
||
#include "zwave_command_class_humidity_control_operating_state.h" | ||
#include "zwave_command_class_humidity_control_types.h" | ||
#include "zwave_command_classes_utils.h" | ||
#include "ZW_classcmd.h" | ||
|
||
// Includes from other ZPC Components | ||
#include "zwave_command_class_indices.h" | ||
#include "zwave_command_handler.h" | ||
#include "zwave_command_class_version_types.h" | ||
#include "zpc_attribute_store_network_helper.h" | ||
#include "attribute_store_defined_attribute_types.h" | ||
|
||
// Unify | ||
#include "attribute_resolver.h" | ||
#include "attribute_store.h" | ||
#include "attribute_store_helper.h" | ||
#include "sl_log.h" | ||
|
||
#define LOG_TAG "zwave_command_class_humidity_control_operating_state" | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// Version & Attribute Creation | ||
///////////////////////////////////////////////////////////////////////////// | ||
static void | ||
zwave_command_class_humidity_control_operating_state_on_version_attribute_update( | ||
attribute_store_node_t updated_node, attribute_store_change_t change) | ||
{ | ||
if (change == ATTRIBUTE_DELETED) { | ||
return; | ||
} | ||
|
||
zwave_cc_version_t version = 0; | ||
attribute_store_get_reported(updated_node, &version, sizeof(version)); | ||
|
||
if (version == 0) { | ||
return; | ||
} | ||
|
||
attribute_store_node_t endpoint_node | ||
= attribute_store_get_first_parent_with_type(updated_node, | ||
ATTRIBUTE_ENDPOINT_ID); | ||
|
||
// The order of the attribute matter since it defines the order of the | ||
// Z-Wave get command order. | ||
const attribute_store_type_t attributes[] | ||
= {ATTRIBUTE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_CURRENT_STATE}; | ||
|
||
attribute_store_add_if_missing(endpoint_node, | ||
attributes, | ||
COUNT_OF(attributes)); | ||
} | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// Humidity Control Operating State State Get/Report | ||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
static sl_status_t zwave_command_class_humidity_control_operating_state_get( | ||
attribute_store_node_t node, uint8_t *frame, uint16_t *frame_length) | ||
{ | ||
(void)node; // unused. | ||
ZW_HUMIDITY_CONTROL_OPERATING_STATE_GET_FRAME *get_frame | ||
= (ZW_HUMIDITY_CONTROL_OPERATING_STATE_GET_FRAME *)frame; | ||
get_frame->cmdClass = COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE; | ||
get_frame->cmd = HUMIDITY_CONTROL_OPERATING_STATE_GET; | ||
*frame_length = sizeof(ZW_HUMIDITY_CONTROL_OPERATING_STATE_GET_FRAME); | ||
return SL_STATUS_OK; | ||
} | ||
|
||
sl_status_t zwave_command_class_humidity_control_operating_state_handle_report( | ||
const zwave_controller_connection_info_t *connection_info, | ||
const uint8_t *frame_data, | ||
uint16_t frame_length) | ||
{ | ||
if (frame_length < 3) { | ||
return SL_STATUS_FAIL; | ||
} | ||
|
||
humidity_control_operating_state_t fan_state | ||
= frame_data[2] | ||
& HUMIDITY_CONTROL_OPERATING_STATE_REPORT_PROPERTIES1_OPERATING_STATE_MASK; | ||
|
||
attribute_store_node_t endpoint_node | ||
= zwave_command_class_get_endpoint_node(connection_info); | ||
|
||
attribute_store_set_child_reported( | ||
endpoint_node, | ||
ATTRIBUTE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_CURRENT_STATE, | ||
&fan_state, | ||
sizeof(fan_state)); | ||
|
||
return SL_STATUS_OK; | ||
} | ||
|
||
sl_status_t | ||
zwave_command_class_humidity_control_operating_state_control_handler( | ||
const zwave_controller_connection_info_t *connection_info, | ||
const uint8_t *frame_data, | ||
uint16_t frame_length) | ||
{ | ||
if (frame_length <= COMMAND_INDEX) { | ||
return SL_STATUS_NOT_SUPPORTED; | ||
} | ||
|
||
switch (frame_data[COMMAND_INDEX]) { | ||
case HUMIDITY_CONTROL_OPERATING_STATE_REPORT: | ||
return zwave_command_class_humidity_control_operating_state_handle_report( | ||
connection_info, | ||
frame_data, | ||
frame_length); | ||
default: | ||
return SL_STATUS_NOT_SUPPORTED; | ||
} | ||
} | ||
|
||
sl_status_t zwave_command_class_humidity_control_operating_state_init() | ||
{ | ||
attribute_store_register_callback_by_type( | ||
&zwave_command_class_humidity_control_operating_state_on_version_attribute_update, | ||
ATTRIBUTE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_VERSION); | ||
|
||
attribute_resolver_register_rule( | ||
ATTRIBUTE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_CURRENT_STATE, | ||
NULL, | ||
&zwave_command_class_humidity_control_operating_state_get); | ||
|
||
zwave_command_handler_t handler = {}; | ||
handler.support_handler = NULL; | ||
handler.control_handler | ||
= zwave_command_class_humidity_control_operating_state_control_handler; | ||
handler.minimal_scheme = ZWAVE_CONTROLLER_ENCAPSULATION_NONE; | ||
handler.manual_security_validation = false; | ||
handler.command_class = COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE; | ||
handler.version = 1; | ||
handler.command_class_name = "Humidity Control Operating State"; | ||
handler.comments = "Experimental"; | ||
|
||
return zwave_command_handler_register_handler(handler); | ||
} |
41 changes: 41 additions & 0 deletions
41
...mponents/zwave_command_classes/src/zwave_command_class_humidity_control_operating_state.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
/****************************************************************************** | ||
* # License | ||
* <b>Copyright 2024 Silicon Laboratories Inc. www.silabs.com</b> | ||
****************************************************************************** | ||
* The licensor of this software is Silicon Laboratories Inc. Your use of this | ||
* software is governed by the terms of Silicon Labs Master Software License | ||
* Agreement (MSLA) available at | ||
* www.silabs.com/about-us/legal/master-software-license-agreement. This | ||
* software is distributed to you in Source Code format and is governed by the | ||
* sections of the MSLA applicable to Source Code. | ||
* | ||
*****************************************************************************/ | ||
|
||
/** | ||
* @defgroup zwave_command_class_humidity_control_operating_state | ||
* @brief Humidity Control Operating State Command Class handlers and control function | ||
* | ||
* This module implement some of the functions to control the | ||
* Humidity Control Operating State Command Class | ||
* | ||
* @{ | ||
*/ | ||
|
||
#ifndef ZWAVE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_H | ||
#define ZWAVE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_H | ||
|
||
#include "sl_status.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
sl_status_t zwave_command_class_humidity_control_operating_state_init(); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif //ZWAVE_COMMAND_CLASS_HUMIDITY_CONTROL_OPERATING_STATE_H | ||
/** @} end zwave_command_class_humidity_control_operating_state */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.