Skip to content

Commit

Permalink
reverted window app.matter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarthak-Shaha committed Feb 27, 2024
1 parent cae9989 commit 7d82922
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/window-app/common/window-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1899,6 +1899,10 @@ cluster IcdManagement = 70 {
optional octet_string<16> verificationKey = 1;
}

request struct StayActiveRequestRequest {
int32u stayActiveDuration = 0;
}

response struct StayActiveResponse = 4 {
int32u promisedActiveDuration = 0;
}
Expand All @@ -1908,7 +1912,7 @@ cluster IcdManagement = 70 {
/** Unregister a client from an end device */
fabric command access(invoke: manage) UnregisterClient(UnregisterClientRequest): DefaultSuccess = 2;
/** Request the end device to stay in Active Mode for an additional ActiveModeThreshold */
command access(invoke: manage) StayActiveRequest(): StayActiveResponse = 3;
command access(invoke: manage) StayActiveRequest(StayActiveRequestRequest): StayActiveResponse = 3;
}

/** Provides an interface for controlling and adjusting automatic window coverings. */
Expand Down

0 comments on commit 7d82922

Please sign in to comment.