Skip to content

Commit

Permalink
Add implementation for ModeSelectCluster's OnMode attribute and DEPON… (
Browse files Browse the repository at this point in the history
#15888)

* Implement OnMode functionalities

* Generated Changes.
  • Loading branch information
du48s03 authored and pull[bot] committed Jul 17, 2023
1 parent 346bee1 commit 2377208
Show file tree
Hide file tree
Showing 40 changed files with 3,134 additions and 936 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1971,17 +1971,26 @@ server cluster MediaPlayback = 1286 {
}

server cluster ModeSelect = 80 {
bitmap ModeSelectFeature : BITMAP32 {
kDeponoff = 0x1;
}

struct ModeOptionStruct {
CHAR_STRING<32> label = 0;
INT8U mode = 1;
INT32U semanticTag = 2;
}

readonly attribute int8u currentMode = 0;
readonly attribute ModeOptionStruct supportedModes[] = 1;
attribute int8u onMode = 2;
readonly attribute int8u startUpMode = 3;
readonly attribute char_string<32> description = 4;
readonly attribute char_string<32> description = 0;
readonly attribute nullable enum16 standardNamespace = 1;
readonly attribute ModeOptionStruct supportedModes[] = 2;
readonly attribute int8u currentMode = 3;
readonly attribute nullable int8u startUpMode = 4;
attribute nullable int8u onMode = 5;
readonly global attribute command_id generatedCommandList[] = 65528;
readonly global attribute command_id acceptedCommandList[] = 65529;
readonly global attribute attrib_id attributeList[] = 65531;
readonly global attribute bitmap32 featureMap = 65532;
readonly global attribute int16u clusterRevision = 65533;

request struct ChangeToModeRequest {
Expand Down
Loading

0 comments on commit 2377208

Please sign in to comment.