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

zcl.onoff.swconfig.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: 4ed100caf9fc85d70989b75abcea8ee3818524fd (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
/* Copyright [2019 - 2019] Exegin Technologies Limited. All rights reserved. */

#ifndef ZCL_ONOFF_SWCONFIG_H
#define ZCL_ONOFF_SWCONFIG_H

#include "zcl/zcl.h"

/*--------------------------------------------------------------------------
 *  DESCRIPTION
 *      Interface definition for the ZCL OnOff cluster.
 *
 *      This cluster is dependent on the OnOff client cluster, as the switch
 *      actions attribute specifies the commands of the OnOff cluster to be
 *      generated when the switch moves between it's two states.
 *--------------------------------------------------------------------------
 */

/* Attribute Identifiers */
enum {
    ZCL_ONOFF_SWCONFIG_ATTR_TYPE = 0x0000, /* R- mandatory! */
    ZCL_ONOFF_SWCONFIG_ATTR_ACTIONS = 0x0010 /* RW mandatory! */
};

/* Switch Info values */
enum {
    ZCL_ONOFF_SWCONFIG_TOGGLE = 0x00,
    ZCL_ONOFF_SWCONFIG_MOMENTARY = 0x01,
    ZCL_ONOFF_SWCONFIG_MULTIFUNCTION = 0x02
};

/* Switch Settings values */
enum {
    ZCL_ONOFF_SWCONFIG_ON_OFF = 0x00,
    ZCL_ONOFF_SWCONFIG_OFF_ON = 0x01,
    ZCL_ONOFF_SWCONFIG_TOGGLE_TOGGLE = 0x02
};

/*---------------------------------------------------------------
 * OnOff Switch Configuration Server Cluster
 *---------------------------------------------------------------
 */
struct ZbZclClusterT * ZbZclOnOffSwConfigServerAlloc(struct ZigBeeT *zb, uint8_t endpoint, uint8_t switch_type);

/*---------------------------------------------------------------
 * OnOff Switch Configuration Client Cluster
 *---------------------------------------------------------------
 */
struct ZbZclClusterT * ZbZclOnOffSwConfigClientAlloc(struct ZigBeeT *zb, uint8_t endpoint);

#endif /* __ZCL_ONOFF_SWCONFIG_H */