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

zcl.occupancy.h « 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: 615d01da19037c60656333ff0c96be06ffc8567a (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
/* Copyright [2009 - 2020] Exegin Technologies Limited. All rights reserved. */

#ifndef ZCL_OCCUP_H
# define ZCL_OCCUP_H

/* PICS.ZCL.Occupancy
 * OS.S | True
 * OS.C | True
 *
 * Occupancy Sensor Type
 * OS.S.OST00 | False
 * OS.S.OST01 | False
 * OS.S.OST02 | False
 *
 * Server Attributes
 * OS.S.A0000 | True
 * OS.S.A0000.Report.Tx | True
 * OS.S.A0001 | True
 * OS.S.A0002 | True
 * OS.S.A0010 | True
 * OS.S.A0011 | True
 * OS.S.A0012 | True
 * OS.S.A0020 | True
 * OS.S.A0021 | True
 * OS.S.A0022 | True
 * OS.S.A0030 | False
 * OS.S.A0031 | False
 * OS.S.A0032 | False
 * OS.S.Afffd | True
 * OS.S.Afffe | False
 *
 * Client Attributes
 * OS.C.A0000.Report.Rsp | False
 * OS.C.Afffd | True
 * OS.C.Afffe | False
 */

#include "zcl/zcl.h"

/** Occupancy Sensing Server Attribute IDs */
enum ZbZclOccupancySvrAttrT {
    ZCL_OCC_ATTR_OCCUPANCY = 0x0000,
    ZCL_OCC_ATTR_SENSORTYPE = 0x0001,
    ZCL_OCC_ATTR_SENSORTYPE_BITMAP = 0x0002,
    ZCL_OCC_ATTR_PIR_OU_DELAY = 0x0010,
    ZCL_OCC_ATTR_PIR_UO_DELAY = 0x0011,
    ZCL_OCC_ATTR_PIR_UO_THRESHOLD = 0x0012,
    ZCL_OCC_ATTR_US_OU_DELAY = 0x0020,
    ZCL_OCC_ATTR_US_UO_DELAY = 0x0021,
    ZCL_OCC_ATTR_US_UO_THRESHOLD = 0x0022,
    ZCL_OCC_ATTR_PHY_OU_DELAY = 0x0030,
    ZCL_OCC_ATTR_PHY_UO_DELAY = 0x0031,
    ZCL_OCC_ATTR_PHY_UO_THRESHOLD = 0x0032,
};

#define OCC_SENSOR_PIR                      0x00
#define OCC_SENSOR_ULTRASONIC               0x01
#define OCC_SENSOR_PIR_ULTRASONIC           0x02

struct ZbZclClusterT * ZbZclOccupancyClientAlloc(struct ZigBeeT *zb, uint8_t endpoint);
struct ZbZclClusterT * ZbZclOccupancyServerAlloc(struct ZigBeeT *zb, uint8_t endpoint);

#endif /* ZCL_OCCUP_H */