17
17
18
18
package matter.devicecontroller.cluster.clusters
19
19
20
+ import matter.controller.MatterController
20
21
import matter.devicecontroller.cluster.structs.*
21
22
22
- class ActionsCluster (private val endpointId : UShort ) {
23
+ class ActionsCluster (private val controller : MatterController , private val endpointId : UShort ) {
23
24
class ActionListAttribute (val value : List <ActionsClusterActionStruct >)
24
25
25
26
class EndpointListsAttribute (val value : List <ActionsClusterEndpointListStruct >)
@@ -33,6 +34,8 @@ class ActionsCluster(private val endpointId: UShort) {
33
34
class AttributeListAttribute (val value : List <UInt >)
34
35
35
36
suspend fun instantAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
37
+ val commandId = 0L
38
+
36
39
if (timedInvokeTimeoutMs != null ) {
37
40
// Do the action with timedInvokeTimeoutMs
38
41
} else {
@@ -46,6 +49,8 @@ class ActionsCluster(private val endpointId: UShort) {
46
49
transitionTime : UShort ,
47
50
timedInvokeTimeoutMs : Int? = null
48
51
) {
52
+ val commandId = 1L
53
+
49
54
if (timedInvokeTimeoutMs != null ) {
50
55
// Do the action with timedInvokeTimeoutMs
51
56
} else {
@@ -54,6 +59,8 @@ class ActionsCluster(private val endpointId: UShort) {
54
59
}
55
60
56
61
suspend fun startAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
62
+ val commandId = 2L
63
+
57
64
if (timedInvokeTimeoutMs != null ) {
58
65
// Do the action with timedInvokeTimeoutMs
59
66
} else {
@@ -67,6 +74,8 @@ class ActionsCluster(private val endpointId: UShort) {
67
74
duration : UInt ,
68
75
timedInvokeTimeoutMs : Int? = null
69
76
) {
77
+ val commandId = 3L
78
+
70
79
if (timedInvokeTimeoutMs != null ) {
71
80
// Do the action with timedInvokeTimeoutMs
72
81
} else {
@@ -75,6 +84,8 @@ class ActionsCluster(private val endpointId: UShort) {
75
84
}
76
85
77
86
suspend fun stopAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
87
+ val commandId = 4L
88
+
78
89
if (timedInvokeTimeoutMs != null ) {
79
90
// Do the action with timedInvokeTimeoutMs
80
91
} else {
@@ -83,6 +94,8 @@ class ActionsCluster(private val endpointId: UShort) {
83
94
}
84
95
85
96
suspend fun pauseAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
97
+ val commandId = 5L
98
+
86
99
if (timedInvokeTimeoutMs != null ) {
87
100
// Do the action with timedInvokeTimeoutMs
88
101
} else {
@@ -96,6 +109,8 @@ class ActionsCluster(private val endpointId: UShort) {
96
109
duration : UInt ,
97
110
timedInvokeTimeoutMs : Int? = null
98
111
) {
112
+ val commandId = 6L
113
+
99
114
if (timedInvokeTimeoutMs != null ) {
100
115
// Do the action with timedInvokeTimeoutMs
101
116
} else {
@@ -104,6 +119,8 @@ class ActionsCluster(private val endpointId: UShort) {
104
119
}
105
120
106
121
suspend fun resumeAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
122
+ val commandId = 7L
123
+
107
124
if (timedInvokeTimeoutMs != null ) {
108
125
// Do the action with timedInvokeTimeoutMs
109
126
} else {
@@ -112,6 +129,8 @@ class ActionsCluster(private val endpointId: UShort) {
112
129
}
113
130
114
131
suspend fun enableAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
132
+ val commandId = 8L
133
+
115
134
if (timedInvokeTimeoutMs != null ) {
116
135
// Do the action with timedInvokeTimeoutMs
117
136
} else {
@@ -125,6 +144,8 @@ class ActionsCluster(private val endpointId: UShort) {
125
144
duration : UInt ,
126
145
timedInvokeTimeoutMs : Int? = null
127
146
) {
147
+ val commandId = 9L
148
+
128
149
if (timedInvokeTimeoutMs != null ) {
129
150
// Do the action with timedInvokeTimeoutMs
130
151
} else {
@@ -133,6 +154,8 @@ class ActionsCluster(private val endpointId: UShort) {
133
154
}
134
155
135
156
suspend fun disableAction (actionID : UShort , invokeID : UInt? , timedInvokeTimeoutMs : Int? = null) {
157
+ val commandId = 10L
158
+
136
159
if (timedInvokeTimeoutMs != null ) {
137
160
// Do the action with timedInvokeTimeoutMs
138
161
} else {
@@ -146,6 +169,8 @@ class ActionsCluster(private val endpointId: UShort) {
146
169
duration : UInt ,
147
170
timedInvokeTimeoutMs : Int? = null
148
171
) {
172
+ val commandId = 11L
173
+
149
174
if (timedInvokeTimeoutMs != null ) {
150
175
// Do the action with timedInvokeTimeoutMs
151
176
} else {
0 commit comments