91a775d7e9007b0c290bb25715db61762b8ecfd2
[platform/upstream/connectedhomeip.git] / src / controller / OnOffCluster.h
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    All rights reserved.
5  *
6  *    Licensed under the Apache License, Version 2.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18
19 #pragma once
20
21 #include <controller/CHIPCluster.h>
22 #include <core/CHIPCallback.h>
23
24 namespace chip {
25 namespace Controller {
26
27 constexpr ClusterId kOnOffClusterId = 0x0006;
28
29 class DLL_EXPORT OnOffCluster : public ClusterBase
30 {
31 public:
32     OnOffCluster() : ClusterBase(kOnOffClusterId) {}
33     ~OnOffCluster() {}
34
35     CHIP_ERROR On(Callback::Callback<> * onCompletion);
36     CHIP_ERROR Off(Callback::Callback<> * onCompletion);
37     CHIP_ERROR Toggle(Callback::Callback<> * onCompletion);
38
39     CHIP_ERROR ReadAttributeOnOff(Callback::Callback<> * onCompletion);
40     CHIP_ERROR ReportAttributeOnOff(Callback::Callback<> * onChange, uint16_t minInterval, uint16_t maxInterval);
41
42     CHIP_ERROR ReadAttributeClusterRevision(Callback::Callback<> * onCompletion);
43 };
44
45 } // namespace Controller
46 } // namespace chip