Skip to content

Commit 6cef5da

Browse files
Update and regen realtek_bee/data_model/lighting-app.zap (#38077)
1 parent 6bc9633 commit 6cef5da

File tree

2 files changed

+8
-26
lines changed

2 files changed

+8
-26
lines changed

examples/lighting-app/realtek_bee/data_model/lighting-app.matter

+8-10
Original file line numberDiff line numberDiff line change
@@ -2201,7 +2201,7 @@ provisional cluster ScenesManagement = 98 {
22012201
optional int64s valueSigned64 = 8;
22022202
}
22032203

2204-
struct ExtensionFieldSet {
2204+
struct ExtensionFieldSetStruct {
22052205
cluster_id clusterID = 0;
22062206
AttributeValuePairStruct attributeValueList[] = 1;
22072207
}
@@ -2215,7 +2215,6 @@ provisional cluster ScenesManagement = 98 {
22152215
fabric_idx fabricIndex = 254;
22162216
}
22172217

2218-
readonly attribute optional nullable node_id lastConfiguredBy = 0;
22192218
readonly attribute int16u sceneTableSize = 1;
22202219
readonly attribute SceneInfoStruct fabricSceneInfo[] = 2;
22212220
readonly attribute command_id generatedCommandList[] = 65528;
@@ -2229,8 +2228,8 @@ provisional cluster ScenesManagement = 98 {
22292228
group_id groupID = 0;
22302229
int8u sceneID = 1;
22312230
int32u transitionTime = 2;
2232-
char_string sceneName = 3;
2233-
ExtensionFieldSet extensionFieldSets[] = 4;
2231+
char_string<16> sceneName = 3;
2232+
ExtensionFieldSetStruct extensionFieldSetStructs[] = 4;
22342233
}
22352234

22362235
response struct AddSceneResponse = 0 {
@@ -2249,8 +2248,8 @@ provisional cluster ScenesManagement = 98 {
22492248
group_id groupID = 1;
22502249
int8u sceneID = 2;
22512250
optional int32u transitionTime = 3;
2252-
optional char_string sceneName = 4;
2253-
optional ExtensionFieldSet extensionFieldSets[] = 5;
2251+
optional char_string<16> sceneName = 4;
2252+
optional ExtensionFieldSetStruct extensionFieldSetStructs[] = 5;
22542253
}
22552254

22562255
request struct RemoveSceneRequest {
@@ -2315,7 +2314,7 @@ provisional cluster ScenesManagement = 98 {
23152314
int8u sceneIdentifierFrom = 2;
23162315
}
23172316

2318-
/** Add a scene to the scene table. Extension field sets are supported, and are inputed as '{"ClusterID": VALUE, "AttributeValueList":[{"AttributeID": VALUE, "Value*": VALUE}]}' */
2317+
/** Add a scene to the scene table. Extension field sets are input as '{"ClusterID": VALUE, "AttributeValueList":[{"AttributeID": VALUE, "Value*": VALUE}]}'. */
23192318
fabric command access(invoke: manage) AddScene(AddSceneRequest): AddSceneResponse = 0;
23202319
/** Retrieves the requested scene entry from its Scene table. */
23212320
fabric command ViewScene(ViewSceneRequest): ViewSceneResponse = 1;
@@ -2327,9 +2326,9 @@ provisional cluster ScenesManagement = 98 {
23272326
fabric command access(invoke: manage) StoreScene(StoreSceneRequest): StoreSceneResponse = 4;
23282327
/** Set the attributes and corresponding state for each other cluster implemented on the endpoint accordingly to the resquested scene entry in the Scene Table */
23292328
fabric command RecallScene(RecallSceneRequest): DefaultSuccess = 5;
2330-
/** Get an unused scene identifier when no commissioning tool is in the network, or for a commissioning tool to get the used scene identifiers within a certain group */
2329+
/** This command can be used to get the used scene identifiers within a certain group, for the endpoint that implements this cluster. */
23312330
fabric command GetSceneMembership(GetSceneMembershipRequest): GetSceneMembershipResponse = 6;
2332-
/** Allows a client to efficiently copy scenes from one group/scene identifier pair to another group/scene identifier pair. */
2331+
/** This command allows a client to efficiently copy scenes from one group/scene identifier pair to another group/scene identifier pair. */
23332332
fabric command access(invoke: manage) CopyScene(CopySceneRequest): CopySceneResponse = 64;
23342333
}
23352334

@@ -3154,7 +3153,6 @@ endpoint 1 {
31543153
}
31553154

31563155
server cluster ScenesManagement {
3157-
ram attribute lastConfiguredBy;
31583156
ram attribute sceneTableSize default = 16;
31593157
callback attribute fabricSceneInfo;
31603158
callback attribute generatedCommandList;

examples/lighting-app/realtek_bee/data_model/lighting-app.zap

-16
Original file line numberDiff line numberDiff line change
@@ -5097,22 +5097,6 @@
50975097
}
50985098
],
50995099
"attributes": [
5100-
{
5101-
"name": "LastConfiguredBy",
5102-
"code": 0,
5103-
"mfgCode": null,
5104-
"side": "server",
5105-
"type": "node_id",
5106-
"included": 1,
5107-
"storageOption": "RAM",
5108-
"singleton": 0,
5109-
"bounded": 0,
5110-
"defaultValue": "",
5111-
"reportable": 1,
5112-
"minInterval": 1,
5113-
"maxInterval": 65534,
5114-
"reportableChange": 0
5115-
},
51165100
{
51175101
"name": "SceneTableSize",
51185102
"code": 1,

0 commit comments

Comments
 (0)