Skip to content

Commit 9716d65

Browse files
committed
Support HoldTime(&Limit) in OccupancySensing cluster
1 parent f53774f commit 9716d65

6 files changed

+102
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/*
2+
*
3+
* Copyright (c) 2024 Project CHIP Authors
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
#include <app/CommandHandler.h>
19+
#include <app/clusters/occupancy-sensor-server/occupancy-hal.h>
20+
#include <app/clusters/occupancy-sensor-server/occupancy-sensor-server.h>
21+
#include <app/util/attribute-storage.h>
22+
#include <platform/CHIPDeviceLayer.h>
23+
24+
#ifdef MATTER_DM_PLUGIN_OCCUPANCY_SENSING_SERVER
25+
26+
using namespace chip;
27+
using namespace chip::app::Clusters;
28+
using namespace chip::app::Clusters::OccupancySensing;
29+
using namespace chip::app::Clusters::OccupancySensing::Structs;
30+
using namespace chip::DeviceLayer;
31+
32+
using chip::Protocols::InteractionModel::Status;
33+
34+
namespace {
35+
36+
static constexpr size_t kOccupancySensingClusterTableSize =
37+
MATTER_DM_OCCUPANCY_SENSING_CLUSTER_SERVER_ENDPOINT_COUNT + CHIP_DEVICE_CONFIG_DYNAMIC_ENDPOINT_COUNT;
38+
39+
static_assert(kOccupancySensingClusterTableSize <= kEmberInvalidEndpointIndex, "Occupancy Sensing Cluster table size error");
40+
41+
static std::unique_ptr<Instance> gOccupancySensingClusterInstances[kOccupancySensingClusterTableSize];
42+
43+
} // namespace
44+
45+
void emberAfOccupancySensingClusterInitCallback(EndpointId endpointId)
46+
{
47+
uint16_t epIndex = emberAfGetClusterServerEndpointIndex(endpointId, chip::app::Clusters::OccupancySensing::Id,
48+
MATTER_DM_OCCUPANCY_SENSING_CLUSTER_SERVER_ENDPOINT_COUNT);
49+
if (epIndex < kOccupancySensingClusterTableSize)
50+
{
51+
VerifyOrDie(!gOccupancySensingClusterInstances[epIndex]);
52+
53+
gOccupancySensingClusterInstances[epIndex] =
54+
std::make_unique<Instance>(BitMask<OccupancySensing::Feature, uint32_t>(OccupancySensing::Feature::kPassiveInfrared));
55+
56+
if (gOccupancySensingClusterInstances[epIndex])
57+
{
58+
gOccupancySensingClusterInstances[epIndex]->Init();
59+
60+
OccupancySensing::Structs::HoldTimeLimitsStruct::Type holdTimeLimits = {
61+
.holdTimeMin = 1,
62+
.holdTimeMax = 300,
63+
.holdTimeDefault = 10,
64+
};
65+
66+
SetHoldTimeLimits(endpointId, holdTimeLimits);
67+
// Set default holdtime
68+
SetHoldTime(endpointId, holdTimeLimits.holdTimeDefault);
69+
}
70+
}
71+
else
72+
{
73+
ChipLogError(AppServer, "Error: invalid/unexpected OccupancySensing Cluster endpoint index. %u",
74+
static_cast<uint16_t>(endpointId));
75+
}
76+
}
77+
#endif // MATTER_DM_PLUGIN_OCCUPANCY_SENSING_SERVER

examples/chef/devices/rootnode_contactsensor_lightsensor_occupancysensor_temperaturesensor_pressuresensor_flowsensor_humiditysensor_airqualitysensor_powersource_367e7cea91.matter

+3-2
Original file line numberDiff line numberDiff line change
@@ -2693,10 +2693,11 @@ endpoint 3 {
26932693

26942694
server cluster OccupancySensing {
26952695
ram attribute occupancy default = 0;
2696-
ram attribute occupancySensorType default = 0;
2696+
ram attribute occupancySensorType default = 1;
26972697
ram attribute occupancySensorTypeBitmap default = 0x1;
26982698
callback attribute holdTime;
26992699
callback attribute holdTimeLimits;
2700+
ram attribute PIROccupiedToUnoccupiedDelay default = 10;
27002701
callback attribute generatedCommandList;
27012702
callback attribute acceptedCommandList;
27022703
callback attribute attributeList;
@@ -3129,7 +3130,7 @@ endpoint 9 {
31293130
ram attribute batReplacementDescription default = "2x AA/LR6 Alkaline";
31303131
ram attribute batCommonDesignation default = 2;
31313132
ram attribute batApprovedChemistry default = 1;
3132-
ram attribute batQuantity;
3133+
ram attribute batQuantity default = 1;
31333134
callback attribute endpointList;
31343135
callback attribute generatedCommandList;
31353136
callback attribute acceptedCommandList;

examples/chef/devices/rootnode_contactsensor_lightsensor_occupancysensor_temperaturesensor_pressuresensor_flowsensor_humiditysensor_airqualitysensor_powersource_367e7cea91.zap

+19-3
Original file line numberDiff line numberDiff line change
@@ -3518,7 +3518,7 @@
35183518
"storageOption": "RAM",
35193519
"singleton": 0,
35203520
"bounded": 0,
3521-
"defaultValue": "0",
3521+
"defaultValue": "1",
35223522
"reportable": 1,
35233523
"minInterval": 1,
35243524
"maxInterval": 65534,
@@ -3572,6 +3572,22 @@
35723572
"maxInterval": 65534,
35733573
"reportableChange": 0
35743574
},
3575+
{
3576+
"name": "PIROccupiedToUnoccupiedDelay",
3577+
"code": 16,
3578+
"mfgCode": null,
3579+
"side": "server",
3580+
"type": "int16u",
3581+
"included": 1,
3582+
"storageOption": "RAM",
3583+
"singleton": 0,
3584+
"bounded": 0,
3585+
"defaultValue": "10",
3586+
"reportable": 1,
3587+
"minInterval": 1,
3588+
"maxInterval": 65534,
3589+
"reportableChange": 0
3590+
},
35753591
{
35763592
"name": "GeneratedCommandList",
35773593
"code": 65528,
@@ -9080,7 +9096,7 @@
90809096
"storageOption": "RAM",
90819097
"singleton": 0,
90829098
"bounded": 0,
9083-
"defaultValue": "",
9099+
"defaultValue": "1",
90849100
"reportable": 1,
90859101
"minInterval": 1,
90869102
"maxInterval": 65534,
@@ -9269,4 +9285,4 @@
92699285
"parentEndpointIdentifier": null
92709286
}
92719287
]
9272-
}
9288+
}

examples/chef/esp32/main/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ set(SRC_DIRS_LIST
7070
"${CMAKE_SOURCE_DIR}/../common/clusters/low-power/"
7171
"${CMAKE_SOURCE_DIR}/../common/clusters/media-input/"
7272
"${CMAKE_SOURCE_DIR}/../common/clusters/media-playback/"
73+
"${CMAKE_SOURCE_DIR}/../common/clusters/occupancy-sensing/"
7374
"${CMAKE_SOURCE_DIR}/../common/clusters/refrigerator-and-temperature-controlled-cabinet-mode/"
7475
"${CMAKE_SOURCE_DIR}/../common/clusters/resource-monitoring/"
7576
"${CMAKE_SOURCE_DIR}/../common/clusters/switch/"

examples/chef/linux/BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ executable("${sample_name}") {
6060
"${project_dir}/common/clusters/low-power/LowPowerManager.cpp",
6161
"${project_dir}/common/clusters/media-input/MediaInputManager.cpp",
6262
"${project_dir}/common/clusters/media-playback/MediaPlaybackManager.cpp",
63+
"${project_dir}/common/clusters/occupancy-sensing/occupancy-sensing-stub.cpp",
6364
"${project_dir}/common/clusters/refrigerator-and-temperature-controlled-cabinet-mode/tcc-mode.cpp",
6465
"${project_dir}/common/clusters/resource-monitoring/chef-resource-monitoring-delegates.cpp",
6566
"${project_dir}/common/clusters/switch/SwitchEventHandler.cpp",

examples/chef/nrfconnect/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ target_sources(app PRIVATE
9797
${CHEF}/common/clusters/low-power/LowPowerManager.cpp
9898
${CHEF}/common/clusters/media-input/MediaInputManager.cpp
9999
${CHEF}/common/clusters/media-playback/MediaPlaybackManager.cpp
100+
${CHEF}/common/clusters/occupancy-sensing/occupancy-sensing-stub.cpp
100101
${CHEF}/common/clusters/refrigerator-and-temperature-controlled-cabinet-mode/tcc-mode.cpp
101102
${CHEF}/common/clusters/resource-monitoring/chef-resource-monitoring-delegates.cpp
102103
${CHEF}/common/clusters/switch/SwitchEventHandler.cpp

0 commit comments

Comments
 (0)