|
| 1 | +/****************************************************************************** |
| 2 | + * # License |
| 3 | + * <b>Copyright 2023 Silicon Laboratories Inc. www.silabs.com</b> |
| 4 | + ****************************************************************************** |
| 5 | + * The licensor of this software is Silicon Laboratories Inc. Your use of this |
| 6 | + * software is governed by the terms of Silicon Labs Master Software License |
| 7 | + * Agreement (MSLA) available at |
| 8 | + * www.silabs.com/about-us/legal/master-software-license-agreement. This |
| 9 | + * software is distributed to you in Source Code format and is governed by the |
| 10 | + * sections of the MSLA applicable to Source Code. |
| 11 | + * |
| 12 | + *****************************************************************************/ |
| 13 | + |
| 14 | +/** |
| 15 | + * @defgroup zpc_attribute_store_command_classes_types Type definitions for attribute storage of Command Classes |
| 16 | + * @ingroup zpc_attribute_store |
| 17 | + * @brief Type definitions for Command Classes, used for @ref attribute_store storage. |
| 18 | + * |
| 19 | + */ |
| 20 | + |
| 21 | +/** |
| 22 | + * @defgroup zwave_command_class_humidity_control_mode_types Type definitions for attribute storage of the Sound Switch Command Class |
| 23 | + * @ingroup zpc_attribute_store_command_classes_types |
| 24 | + * @brief Type definitions for the Humidity Control Command Class (Mode, State and Setpoint). |
| 25 | + * |
| 26 | + * @{ |
| 27 | + */ |
| 28 | + |
| 29 | +#ifndef ZWAVE_COMMAND_CLASS_HUMIDITY_CONTROL_MODE_TYPES_H |
| 30 | +#define ZWAVE_COMMAND_CLASS_HUMIDITY_CONTROL_MODE_TYPES_H |
| 31 | + |
| 32 | +#include <stdint.h> |
| 33 | + |
| 34 | +//>> Humidity Control Mode CC |
| 35 | +///> Humidity Control Mode. uint8_t |
| 36 | +typedef uint8_t humidity_control_mode_t; |
| 37 | +///> Humidity Control Suppoted Mode Bitmask. uint8_t |
| 38 | +typedef uint8_t humidity_control_supported_modes_t; |
| 39 | + |
| 40 | +#ifdef __cplusplus |
| 41 | +extern "C" { |
| 42 | +#endif |
| 43 | + |
| 44 | +#ifdef __cplusplus |
| 45 | +} |
| 46 | +#endif |
| 47 | + |
| 48 | +#endif //ZWAVE_COMMAND_CLASS_HUMIDITY_CONTROL_MODE_TYPES_H |
| 49 | +/** @} end zwave_command_class_humidity_control_mode_types */ |
0 commit comments