Skip to content

Commit c402e92

Browse files
Example changes
1 parent 130b355 commit c402e92

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

examples/all-clusters-app/esp32/main/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ set(SRC_DIRS_LIST
8282
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/group-key-mgmt-server"
8383
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
8484
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
85+
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/actions-server"
8586
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/icd-management-server"
8687
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
8788
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/occupancy-sensor-server"

examples/all-clusters-app/esp32/main/main.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include <app/server/OnboardingCodesUtil.h>
3737
#include <app/util/endpoint-config-api.h>
3838
#include <binding-handler.h>
39+
#include <bridged-actions-stub.h>
3940
#include <common/CHIPDeviceManager.h>
4041
#include <common/Esp32AppServer.h>
4142
#include <common/Esp32ThreadInit.h>
@@ -96,6 +97,7 @@ AppCallbacks sCallbacks;
9697

9798
app::Clusters::TemperatureControl::AppSupportedTemperatureLevelsDelegate sAppSupportedTemperatureLevelsDelegate;
9899
app::Clusters::ModeSelect::StaticSupportedModesManager sStaticSupportedModesManager;
100+
app::Clusters::Actions::ActionsDelegateImpl sActionsDelegateImpl;
99101

100102
constexpr EndpointId kNetworkCommissioningEndpointSecondary = 0xFFFE;
101103

@@ -126,9 +128,9 @@ static void InitServer(intptr_t context)
126128

127129
app::Clusters::TemperatureControl::SetInstance(&sAppSupportedTemperatureLevelsDelegate);
128130
app::Clusters::ModeSelect::setSupportedModesManager(&sStaticSupportedModesManager);
131+
app::Clusters::Actions::Instance::GetInstance()->SetDefaultDelegate(&sActionsDelegateImpl);
129132
}
130133

131-
// #include <laundry-washer-controls-server/laundry-washer-controls-server.h>
132134
#include <examples/all-clusters-app/all-clusters-common/include/laundry-washer-controls-delegate-impl.h>
133135
#include <src/app/clusters/laundry-washer-controls-server/laundry-washer-controls-server.h>
134136

examples/bridge-app/esp32/main/main.cpp

-8
Original file line numberDiff line numberDiff line change
@@ -349,14 +349,6 @@ void HandleDeviceStatusChanged(Device * dev, Device::Changed_t itemChangedMask)
349349
}
350350
}
351351

352-
bool emberAfActionsClusterInstantActionCallback(app::CommandHandler * commandObj, const app::ConcreteCommandPath & commandPath,
353-
const Actions::Commands::InstantAction::DecodableType & commandData)
354-
{
355-
// No actions are implemented, just return status NotFound.
356-
commandObj->AddStatus(commandPath, Protocols::InteractionModel::Status::NotFound);
357-
return true;
358-
}
359-
360352
const EmberAfDeviceType gRootDeviceTypes[] = { { DEVICE_TYPE_ROOT_NODE, DEVICE_VERSION_DEFAULT } };
361353
const EmberAfDeviceType gAggregateNodeDeviceTypes[] = { { DEVICE_TYPE_BRIDGE, DEVICE_VERSION_DEFAULT } };
362354

0 commit comments

Comments
 (0)