Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove light switch from lighting-app #15212

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions examples/lighting-app/lighting-common/lighting-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -933,31 +933,6 @@ server cluster OccupancySensing = 1030 {
attribute(readonly) int16u clusterRevision = 65533;
}

client cluster OnOff = 6 {
enum OnOffDelayedAllOffEffectVariant : enum8 {
kFadeToOffIn0p8Seconds = 0;
kNoFade = 1;
k50PercentDimDownIn0p8SecondsThenFadeToOffIn12Seconds = 2;
}

enum OnOffDyingLightEffectVariant : enum8 {
k20PercenterDimUpIn0p5SecondsThenFadeToOffIn1Second = 0;
}

enum OnOffEffectIdentifier : enum8 {
kDelayedAllOff = 0;
kDyingLight = 1;
}

attribute(readonly) boolean onOff = 0;
attribute(readonly) boolean globalSceneControl = 16384;
attribute(writable) int16u onTime = 16385;
attribute(writable) int16u offWaitTime = 16386;
attribute(writable) enum8 startUpOnOff = 16387;
attribute(readonly) bitmap32 featureMap = 65532;
attribute(readonly) int16u clusterRevision = 65533;
}

server cluster OnOff = 6 {
enum OnOffDelayedAllOffEffectVariant : enum8 {
kFadeToOffIn0p8Seconds = 0;
Expand Down Expand Up @@ -1001,12 +976,6 @@ server cluster OnOff = 6 {
command Toggle(): DefaultSuccess = 2;
}

server cluster OnOffSwitchConfiguration = 7 {
attribute(readonly) enum8 switchType = 0;
attribute(writable) enum8 switchActions = 16;
attribute(readonly) int16u clusterRevision = 65533;
}

server cluster OperationalCredentials = 62 {
enum NodeOperationalCertStatus : ENUM8 {
kSuccess = 0;
Expand Down Expand Up @@ -1410,8 +1379,3 @@ endpoint 1 {
server cluster OnOff;
}

endpoint 2 {
binding cluster OnOff;
server cluster OnOffSwitchConfiguration;
}

Loading