-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Avoid mixing code-backed and Attribute-store-backed attributes * Avoid global singletons to maintain state * Initialize the cluster from the application * Report features based on code, not on ZAP-configured values Signed-off-by: Oliver Fan <[email protected]>
- Loading branch information
1 parent
c98dba9
commit 01b03ce
Showing
4 changed files
with
172 additions
and
133 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
examples/all-clusters-app/all-clusters-common/src/occupancy-sensing-stub.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* | ||
* Copyright (c) 2024 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include <app/clusters/occupancy-sensor-server/occupancy-sensor-server.h> | ||
#include <app/clusters/occupancy-sensor-server/occupancy-hal.h> | ||
#include <app/CommandHandler.h> | ||
#include <platform/CHIPDeviceLayer.h> | ||
|
||
|
||
using namespace chip; | ||
using namespace chip::app::Clusters; | ||
using namespace chip::app::Clusters::OccupancySensing; | ||
using namespace chip::app::Clusters::OccupancySensing::Structs; | ||
using namespace chip::DeviceLayer; | ||
|
||
using chip::Protocols::InteractionModel::Status; | ||
|
||
static std::unique_ptr<OccupancySensingAttrAccess> gAttrAccess[MATTER_DM_OCCUPANCY_SENSING_CLUSTER_SERVER_ENDPOINT_COUNT + CHIP_DEVICE_CONFIG_DYNAMIC_ENDPOINT_COUNT]; | ||
|
||
|
||
void emberAfOccupancySensingClusterInitCallback(chip::EndpointId endpointId) | ||
{ | ||
|
||
VerifyOrDie(!gAttrAccess[endpointId]); | ||
|
||
gAttrAccess[endpointId] = std::make_unique<OccupancySensingAttrAccess>( | ||
BitMask<OccupancySensing::Feature, uint32_t>(OccupancySensing::Feature::kOther)); | ||
|
||
|
||
OccupancySensing::Structs::HoldTimeLimitsStruct::Type holdTimeLimits = { | ||
.holdTimeMin = 1, | ||
.holdTimeMax = 300, | ||
.holdTimeDefault = 10, | ||
}; | ||
|
||
uint16_t holdTime = 10; | ||
|
||
if (gAttrAccess[endpointId]) | ||
{ | ||
gAttrAccess[endpointId]->Init(); | ||
|
||
SetHoldTimeLimits(endpointId, holdTimeLimits); | ||
|
||
SetHoldTime(endpointId, holdTime); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters