forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group_info.h
57 lines (46 loc) · 1.03 KB
/
group_info.h
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
/*
* Copyright (c) 2016 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#ifndef GROUP_INFO_H
#define GROUP_INFO_H
#include <stdint.h>
#include <vector>
class GroupInfo
{
public:
enum Action
{
ActionNone = 0x00,
ActionReadScenes = 0x01,
ActionAddToGroup = 0x02,
ActionRemoveFromGroup = 0x04
};
enum Constants
{
MaxActionRetries = 3
};
enum State
{
StateInGroup,
StateNotInGroup
};
GroupInfo();
State state;
uint8_t actions;
uint16_t id;
std::vector<uint8_t> addScenes;
std::vector<uint8_t> removeScenes;
std::vector<uint8_t> modifyScenes;
int modifyScenesRetries;
uint8_t sceneCount() const;
void setSceneCount(uint8_t sceneCount);
private:
uint8_t m_sceneCount;
};
#endif // GROUP_INFO_H