Skip to content

Commit

Permalink
Add identify support for Ameba (#11038)
Browse files Browse the repository at this point in the history
  • Loading branch information
pankore authored and pull[bot] committed Apr 4, 2022
1 parent 790b122 commit ba2021a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/all-clusters-app/ameba/main/chipinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "DeviceCallbacks.h"
#include "Server.h"

#include <app/clusters/identify-server/identify-server.h>
#include <platform/CHIPDeviceLayer.h>
#include <support/CHIPMem.h>

Expand All @@ -15,6 +16,20 @@ using namespace ::chip;
using namespace ::chip::DeviceManager;
using namespace ::chip::DeviceLayer;

Identify gIdentify0 = {
chip::EndpointId{ 0 },
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStart"); },
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStop"); },
EMBER_ZCL_IDENTIFY_IDENTIFY_TYPE_VISIBLE_LED,
};

Identify gIdentify1 = {
chip::EndpointId{ 1 },
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStart"); },
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStop"); },
EMBER_ZCL_IDENTIFY_IDENTIFY_TYPE_VISIBLE_LED,
};

static DeviceCallbacks EchoCallbacks;

extern "C" void ChipTest(void)
Expand Down

0 comments on commit ba2021a

Please sign in to comment.