Welcome to mirror list, hosted at ThFree Co, Russian Federation.

zcl.temp.meas.h « general « zcl « include « stack « zigbee « STM32_WPAN « ST « Middlewares - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 208746a4a6f8a8e76343ee0ba5527bae13e22412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
 * @file zcl.temp.meas.h
 * @heading Temperature Measurement
 * @brief ZCL Temperature Measurement cluster header
 * ZCL 7 section 4.4
 * ZCL 8 section 4.4
 * @copyright Copyright [2009 - 2021] Exegin Technologies Limited. All rights reserved.
 */

#ifndef ZCL_MEASURE_H
# define ZCL_MEASURE_H

/* @PICS.ZCL.TemperatureMeasurement
 * TM.S | Server | True
 * TM.C | Client | True
 *
 * Server Attributes
 * TM.S.A0000 | MeasuredValue | True
 * TM.S.A0000.Report.Tx | MeasuredValue | True
 * TM.S.A0001 | MinMeasuredValue | True
 * TM.S.A0002 | MaxMeasuredValue | True
 * TM.S.A0003 | Tolerance | True | Optional
 * TM.S.Afffd | ClusterRevision | True
 * TM.S.Afffe | AttributeReportingStatus | True
 *
 * Client Attributes
 * TM.C.A0000.Report.Rsp | MeasuredValue | False
 * TM.C.Afffd | ClusterRevision | True
 * TM.C.Afffe | AttributeReportingStatus | True
 */

#include "zcl/zcl.h"

/** Temperature Measurement Server Attribute IDs */
enum ZbZclTempMeasSvrAttrT {
    ZCL_TEMP_MEAS_ATTR_MEAS_VAL = 0x0000, /**< MeasuredValue */
    ZCL_TEMP_MEAS_ATTR_MIN_MEAS_VAL = 0x0001, /**< MinMeasuredValue */
    ZCL_TEMP_MEAS_ATTR_MAX_MEAS_VAL = 0x0002, /**< MaxMeasuredValue */
    ZCL_TEMP_MEAS_ATTR_TOLERANCE = 0x0003 /**< Tolerance (Optional) */
};

/* Temperature Measurement Defines */
#define ZCL_TEMP_MEAS_MEASURED_DEFAULT                       0xffff
#define ZCL_TEMP_MEAS_UNKNOWN                                0x8000
#define ZCL_TEMP_MEAS_MIN_MEAS_VAL_MIN              (int16_t)0x954d
#define ZCL_TEMP_MEAS_MIN_MEAS_VAL_MAX              (int16_t)0x7ffe
#define ZCL_TEMP_MEAS_MAX_MEAS_VAL_MIN              (int16_t)0x954e
#define ZCL_TEMP_MEAS_MAX_MEAS_VAL_MAX              (int16_t)0x7fff
#define ZCL_TEMP_MEAS_TOLERANCE_MIN                          0x0000
#define ZCL_TEMP_MEAS_TOLERANCE_MAX                          0x0800

/* Temperature Measurement Client */
/**
 * Create a new instance of the Temperature Measurement Client cluster
 * @param zb Zigbee stack instance
 * @param endpoint Endpoint on which to create cluster
 * @return Cluster pointer, or NULL if there is an error
 */
struct ZbZclClusterT * ZbZclTempMeasClientAlloc(struct ZigBeeT *zb, uint8_t endpoint);

/* Temperature Measurement Server */
/**
 * Create a new instance of the Temperature Measurement Server cluster
 * @param zb Zigbee stack instance
 * @param endpoint Endpoint on which to create cluster
 * @param min Minimum value capable of being measured (MinMeasuredValue)
 * @param max Maximum value capable of being measured (MaxMeasuredValue)
 * @param tolerance Tolerance
 * @return Cluster pointer, or NULL if there is an error
 */
struct ZbZclClusterT * ZbZclTempMeasServerAlloc(struct ZigBeeT *zb, uint8_t endpoint, int16_t min, int16_t max, uint16_t tolerance);

#endif