Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6f19781
Valve Configuration And Control code driven cluster migration
tersal Nov 25, 2025
ef74712
Minor code additions/removals
tersal Nov 25, 2025
28e8cef
Remove trailing spaces
tersal Nov 25, 2025
1acd1e9
Fix unit test
tersal Nov 25, 2025
33eb792
Restyled by whitespace
restyled-commits Nov 25, 2025
d2cc3e0
Restyled by clang-format
restyled-commits Nov 25, 2025
0f32e97
Restyled by gn
restyled-commits Nov 25, 2025
b203f51
Restyled by prettier-json
restyled-commits Nov 25, 2025
ddd5939
Apply suggestions from code review
tersal Nov 25, 2025
0708d2f
Fix typos, removed switch braces and change order of Attributes in co…
tersal Nov 25, 2025
11357f2
Restyled by whitespace
restyled-commits Nov 25, 2025
b77455f
Restyled by prettier-json
restyled-commits Nov 25, 2025
47ec115
Merge branch 'master' into valve-conf-control-migration
tersal Nov 25, 2025
c67c150
Fix compilation errors
tersal Nov 26, 2025
6e596a7
Update src/app/clusters/valve-configuration-and-control-server/valve-…
tersal Nov 26, 2025
69d47a3
Revert Delegate changes
tersal Nov 26, 2025
a15bd3c
Revert header changes in Delegate and app implementation
tersal Nov 26, 2025
317d3b0
Update src/app/clusters/valve-configuration-and-control-server/valve-…
tersal Nov 28, 2025
9515e2a
changes to build files and unit tests
tersal Nov 28, 2025
106578c
Merge branch 'master' into valve-conf-control-migration
tersal Nov 28, 2025
2855e3e
Regenerate with ZAP
tersal Nov 28, 2025
9e883ee
Restyled by whitespace
restyled-commits Nov 28, 2025
744ffc1
Restyled by clang-format
restyled-commits Nov 28, 2025
e2abac3
Restyled by gn
restyled-commits Nov 28, 2025
f4e0c3f
Restyled by prettier-json
restyled-commits Nov 28, 2025
5cc90ad
Merge branch 'master' into valve-conf-control-migration
tersal Dec 2, 2025
26861db
Resolve merge conflicts with ZAP generation
tersal Dec 2, 2025
a5535aa
Merge branch 'master' into valve-conf-control-migration
tersal Dec 8, 2025
dc48c58
Regenerate with ZAP
tersal Dec 8, 2025
bf1709f
Add SetLevel API back and fix tests
tersal Dec 9, 2025
f12f7a4
Restyled by clang-format
restyled-commits Dec 9, 2025
c4e373c
Add guards for TimeSync dependency
tersal Dec 9, 2025
6854105
Fix compilation errors
tersal Dec 9, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -8642,22 +8642,22 @@ endpoint 1 {
server cluster ValveConfigurationAndControl {
emits event ValveStateChanged;
emits event ValveFault;
ram attribute openDuration;
persist attribute defaultOpenDuration;
ram attribute autoCloseTime;
callback attribute openDuration;
callback attribute defaultOpenDuration;
callback attribute autoCloseTime;
callback attribute remainingDuration;
ram attribute currentState;
ram attribute targetState;
ram attribute currentLevel;
ram attribute targetLevel;
persist attribute defaultOpenLevel default = 100;
ram attribute valveFault default = 0;
ram attribute levelStep default = 1;
callback attribute currentState;
callback attribute targetState;
callback attribute currentLevel;
callback attribute targetLevel;
callback attribute defaultOpenLevel;
callback attribute valveFault;
callback attribute levelStep;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute attributeList;
ram attribute featureMap default = 3;
ram attribute clusterRevision default = 1;
callback attribute clusterRevision;

handle command Open;
handle command Close;
Expand Down
Loading
Loading