Skip to content

Commit 5fe9552

Browse files
authored
Adds changes for the zap file (project-chip#36761)
1 parent 6447c64 commit 5fe9552

File tree

4 files changed

+457
-213
lines changed

4 files changed

+457
-213
lines changed

examples/refrigerator-app/silabs/data_model/refrigerator-thread-app.matter

+86-14
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,78 @@ cluster Identify = 3 {
291291
command access(invoke: manage) TriggerEffect(TriggerEffectRequest): DefaultSuccess = 64;
292292
}
293293

294+
/** Attributes and commands for switching devices between 'On' and 'Off' states. */
295+
cluster OnOff = 6 {
296+
revision 6;
297+
298+
enum DelayedAllOffEffectVariantEnum : enum8 {
299+
kDelayedOffFastFade = 0;
300+
kNoFade = 1;
301+
kDelayedOffSlowFade = 2;
302+
}
303+
304+
enum DyingLightEffectVariantEnum : enum8 {
305+
kDyingLightFadeOff = 0;
306+
}
307+
308+
enum EffectIdentifierEnum : enum8 {
309+
kDelayedAllOff = 0;
310+
kDyingLight = 1;
311+
}
312+
313+
enum StartUpOnOffEnum : enum8 {
314+
kOff = 0;
315+
kOn = 1;
316+
kToggle = 2;
317+
}
318+
319+
bitmap Feature : bitmap32 {
320+
kLighting = 0x1;
321+
kDeadFrontBehavior = 0x2;
322+
kOffOnly = 0x4;
323+
}
324+
325+
bitmap OnOffControlBitmap : bitmap8 {
326+
kAcceptOnlyWhenOn = 0x1;
327+
}
328+
329+
readonly attribute boolean onOff = 0;
330+
readonly attribute optional boolean globalSceneControl = 16384;
331+
attribute optional int16u onTime = 16385;
332+
attribute optional int16u offWaitTime = 16386;
333+
attribute access(write: manage) optional nullable StartUpOnOffEnum startUpOnOff = 16387;
334+
readonly attribute command_id generatedCommandList[] = 65528;
335+
readonly attribute command_id acceptedCommandList[] = 65529;
336+
readonly attribute event_id eventList[] = 65530;
337+
readonly attribute attrib_id attributeList[] = 65531;
338+
readonly attribute bitmap32 featureMap = 65532;
339+
readonly attribute int16u clusterRevision = 65533;
340+
341+
request struct OffWithEffectRequest {
342+
EffectIdentifierEnum effectIdentifier = 0;
343+
enum8 effectVariant = 1;
344+
}
345+
346+
request struct OnWithTimedOffRequest {
347+
OnOffControlBitmap onOffControl = 0;
348+
int16u onTime = 1;
349+
int16u offWaitTime = 2;
350+
}
351+
352+
/** On receipt of this command, a device SHALL enter its ‘Off’ state. This state is device dependent, but it is recommended that it is used for power off or similar functions. On receipt of the Off command, the OnTime attribute SHALL be set to 0. */
353+
command Off(): DefaultSuccess = 0;
354+
/** On receipt of this command, a device SHALL enter its ‘On’ state. This state is device dependent, but it is recommended that it is used for power on or similar functions. On receipt of the On command, if the value of the OnTime attribute is equal to 0, the device SHALL set the OffWaitTime attribute to 0. */
355+
command On(): DefaultSuccess = 1;
356+
/** On receipt of this command, if a device is in its ‘Off’ state it SHALL enter its ‘On’ state. Otherwise, if it is in its ‘On’ state it SHALL enter its ‘Off’ state. On receipt of the Toggle command, if the value of the OnOff attribute is equal to FALSE and if the value of the OnTime attribute is equal to 0, the device SHALL set the OffWaitTime attribute to 0. If the value of the OnOff attribute is equal to TRUE, the OnTime attribute SHALL be set to 0. */
357+
command Toggle(): DefaultSuccess = 2;
358+
/** The OffWithEffect command allows devices to be turned off using enhanced ways of fading. */
359+
command OffWithEffect(OffWithEffectRequest): DefaultSuccess = 64;
360+
/** The OnWithRecallGlobalScene command allows the recall of the settings when the device was turned off. */
361+
command OnWithRecallGlobalScene(): DefaultSuccess = 65;
362+
/** The OnWithTimedOff command allows devices to be turned on for a specific duration with a guarded off duration so that SHOULD the device be subsequently switched off, further OnWithTimedOff commands, received during this time, are prevented from turning the devices back on. */
363+
command OnWithTimedOff(OnWithTimedOffRequest): DefaultSuccess = 66;
364+
}
365+
294366
/** The Descriptor Cluster is meant to replace the support from the Zigbee Device Object (ZDO) for describing a node, its endpoints and clusters. */
295367
cluster Descriptor = 29 {
296368
revision 2;
@@ -1643,6 +1715,7 @@ cluster RefrigeratorAlarm = 87 {
16431715
endpoint 0 {
16441716
device type ma_rootdevice = 22, version 1;
16451717

1718+
binding cluster OtaSoftwareUpdateProvider;
16461719

16471720
server cluster Descriptor {
16481721
callback attribute deviceTypeList;
@@ -1704,20 +1777,6 @@ endpoint 0 {
17041777
ram attribute clusterRevision default = 3;
17051778
}
17061779

1707-
server cluster OtaSoftwareUpdateProvider {
1708-
callback attribute generatedCommandList;
1709-
callback attribute acceptedCommandList;
1710-
callback attribute attributeList;
1711-
ram attribute featureMap default = 0;
1712-
ram attribute clusterRevision default = 1;
1713-
1714-
handle command QueryImage;
1715-
handle command QueryImageResponse;
1716-
handle command ApplyUpdateRequest;
1717-
handle command ApplyUpdateResponse;
1718-
handle command NotifyUpdateApplied;
1719-
}
1720-
17211780
server cluster OtaSoftwareUpdateRequestor {
17221781
callback attribute defaultOTAProviders;
17231782
ram attribute updatePossible default = true;
@@ -1901,6 +1960,19 @@ endpoint 1 {
19011960
handle command TriggerEffect;
19021961
}
19031962

1963+
server cluster OnOff {
1964+
ram attribute onOff default = 0;
1965+
callback attribute generatedCommandList;
1966+
callback attribute acceptedCommandList;
1967+
callback attribute attributeList;
1968+
ram attribute featureMap default = 0;
1969+
ram attribute clusterRevision default = 6;
1970+
1971+
handle command Off;
1972+
handle command On;
1973+
handle command Toggle;
1974+
}
1975+
19041976
server cluster Descriptor {
19051977
callback attribute deviceTypeList;
19061978
callback attribute serverList;

0 commit comments

Comments
 (0)