blob: f700df068b529fb497e6ec9ba0987e1063a2b1e1 [file] [log] [blame]
/*
*
* Copyright (c) 2023 Project CHIP Authors
* All rights reserved.
*
* 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-common/zap-generated/cluster-objects.h>
#include <app/clusters/dishwasher-alarm-server/dishwasher-alarm-server.h>
using namespace chip;
namespace chip {
namespace app {
namespace Clusters {
namespace DishwasherAlarm {
class DishwasherAlarmDelegate : public Delegate
{
public:
/**
* @brief
* A notification that the Mask attribute will be changed. When this happens, some previously suppressed
* alarms may need to be enabled, and previously enabled alarms may need to be suppressed.
* @param[in] mask The new value of the Mask attribute.
* @return The cluster will do this update if ModifyEnabledAlarmsCallback() returns true.
* The cluster will not do this update if ModifyEnabledAlarmsCallback() returns false.
*/
bool ModifyEnabledAlarmsCallback(const BitMask<AlarmMap> mask) override;
/**
* @brief
* A notification that resets active alarms (if possible)
* @param[in] alarms The value of reset alarms
* @return The cluster will reset active alarms if ResetAlarmsCallback() returns true.
* The cluster will not reset active alarms if ResetAlarmsCallback() returns false.
*/
bool ResetAlarmsCallback(const BitMask<AlarmMap> alarms) override;
~DishwasherAlarmDelegate() = default;
};
bool DishwasherAlarmDelegate::ModifyEnabledAlarmsCallback(const BitMask<AlarmMap> mask)
{
// placeholder implementation
return true;
}
bool DishwasherAlarmDelegate::ResetAlarmsCallback(const BitMask<AlarmMap> alarms)
{
// placeholder implementation
return true;
}
} // namespace DishwasherAlarm
} // namespace Clusters
} // namespace app
} // namespace chip
/*
* An example to present device's endpointId
*/
static constexpr EndpointId kDemoEndpointId = 1;
void MatterDishwasherAlarmServerInit()
{
using namespace app::Clusters;
using namespace app::Clusters::DishwasherAlarm;
static DishwasherAlarm::DishwasherAlarmDelegate delegate;
DishwasherAlarm::SetDefaultDelegate(kDemoEndpointId, &delegate);
// Set Supported attribute = 0x2F = 47
// Bit Name Value
// 0 InflowError 1
// 1 DrainError 1
// 2 DoorError 1
// 3 TempTooLow 1
// 4 TempTooHigh 0
// 5 WaterLevelError 1
BitMask<AlarmMap> supported;
supported.SetField(AlarmMap::kInflowError, 1);
supported.SetField(AlarmMap::kDrainError, 1);
supported.SetField(AlarmMap::kDoorError, 1);
supported.SetField(AlarmMap::kTempTooLow, 1);
supported.SetField(AlarmMap::kWaterLevelError, 1);
DishwasherAlarmServer::Instance().SetSupportedValue(kDemoEndpointId, supported);
// Set Mask attribute = 0x2F = 47
// Bit Name Value
// 0 InflowError 1
// 1 DrainError 1
// 2 DoorError 1
// 3 TempTooLow 1
// 4 TempTooHigh 0
// 5 WaterLevelError 1
BitMask<AlarmMap> mask;
mask.SetField(AlarmMap::kInflowError, 1);
mask.SetField(AlarmMap::kDrainError, 1);
mask.SetField(AlarmMap::kDoorError, 1);
mask.SetField(AlarmMap::kTempTooLow, 1);
mask.SetField(AlarmMap::kWaterLevelError, 1);
DishwasherAlarmServer::Instance().SetMaskValue(kDemoEndpointId, mask);
// Set Latch attribute = 0x03
// Bit Name Value
// 0 InflowError 1
// 1 DrainError 1
// 2 DoorError 0
// 3 TempTooLow 0
// 4 TempTooHigh 0
// 5 WaterLevelError 0
BitMask<AlarmMap> latch;
latch.SetField(AlarmMap::kInflowError, 1);
latch.SetField(AlarmMap::kDrainError, 1);
DishwasherAlarmServer::Instance().SetLatchValue(kDemoEndpointId, latch);
// Set State attribute = 0x07
// Bit Name Value
// 0 InflowError 1
// 1 DrainError 1
// 2 DoorError 1
// 3 TempTooLow 0
// 4 TempTooHigh 0
// 5 WaterLevelError 0
BitMask<AlarmMap> state;
state.SetField(AlarmMap::kInflowError, 1);
state.SetField(AlarmMap::kDrainError, 1);
state.SetField(AlarmMap::kDoorError, 1);
DishwasherAlarmServer::Instance().SetStateValue(kDemoEndpointId, state);
}