// SPDX-License-Identifier: LGPL-3.0-or-later
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* nymea-zigbee
* Zigbee integration module for nymea
*
* Copyright (C) 2013 - 2024, nymea GmbH
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
*
* This file is part of nymea-zigbee.
*
* nymea-zigbee is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* nymea-zigbee is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with nymea-zigbee. If not, see .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "zigbeenodeendpointnxp.h"
#include "loggingcategory.h"
#include "zigbeeutils.h"
ZigbeeNodeEndpointNxp::ZigbeeNodeEndpointNxp(ZigbeeBridgeControllerNxp *controller, ZigbeeNode *node, quint8 endpoint, QObject *parent) :
ZigbeeNodeEndpoint(node, endpoint, parent),
m_controller(controller)
{
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::readAttribute(ZigbeeCluster *cluster, QList attributes)
{
qCDebug(dcZigbeeNode()) << "Read" << node() << cluster << attributes;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandReadAttributeRequest(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01,
endpointId(), cluster, attributes,
false, node()->manufacturerCode());
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
if (!reply->additionalMessage().data().isEmpty()) {
ZigbeeClusterAttributeReport report = ZigbeeUtils::parseAttributeReport(reply->additionalMessage().data());
setClusterAttribute(report.clusterId, ZigbeeClusterAttribute(report.attributeId, report.dataType, report.data));
}
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::configureReporting(ZigbeeCluster *cluster, QList reportConfigurations)
{
qCDebug(dcZigbeeNode()) << "Configure reporting" << node();
// FIXME: check the report configuration and the direction field according to specs
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandConfigureReportingRequest(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01,
endpointId(), cluster, 0x00,
false, node()->manufacturerCode(), reportConfigurations);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read configure response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::identify(quint16 seconds)
{
qCDebug(dcZigbeeNode()) << "Identify" << node() << seconds << seconds;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandIdentify(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), seconds);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::factoryReset()
{
qCDebug(dcZigbeeNode()) << "Factory reset" << this;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandFactoryResetNode(node()->shortAddress(), 0x01, endpointId());
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::bindGroup(Zigbee::ClusterId clusterId, quint16 destinationAddress, quint8 destinationEndpoint)
{
qCDebug(dcZigbeeNode()) << "Bind group" << node() << clusterId << ZigbeeUtils::convertUint16ToHexString(destinationAddress) << ZigbeeUtils::convertByteToHexString(destinationEndpoint);
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandBindGroup(node()->extendedAddress(), endpointId(), clusterId, destinationAddress, destinationEndpoint);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
qCDebug(dcZigbeeController()) << reply->additionalMessage().data();
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::bindUnicast(Zigbee::ClusterId clusterId, const ZigbeeAddress &destinationAddress, quint8 destinationEndpoint)
{
qCDebug(dcZigbeeNode()) << "Bind unicast" << node() << clusterId << destinationAddress.toString() << ZigbeeUtils::convertByteToHexString(destinationEndpoint);
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandBindUnicast(node()->extendedAddress(), endpointId(), clusterId, destinationAddress, destinationEndpoint);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
qCDebug(dcZigbeeController()) << reply->additionalMessage().data();
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendOnOffClusterCommand(ZigbeeCluster::OnOffClusterCommand command)
{
qCDebug(dcZigbeeNode()) << "Send on/off cluster command" << node() << command;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandOnOffNoEffects(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), command);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::addGroup(quint8 destinationEndpoint, quint16 groupAddress)
{
qCDebug(dcZigbeeNode()) << "Add group request" << node() << destinationEndpoint << groupAddress;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandAddGroup(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), groupAddress);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
qCDebug(dcZigbeeController()) << reply->additionalMessage().data();
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendLevelCommand(ZigbeeCluster::LevelClusterCommand command, quint8 level, bool triggersOnOff, quint16 transitionTime)
{
qCDebug(dcZigbeeNode()) << "Move to level request" << node() << command << level;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandMoveToLevel(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), triggersOnOff, level, transitionTime);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendMoveToColorTemperature(quint16 colourTemperature, quint16 transitionTime)
{
qCDebug(dcZigbeeNode()) << "Move to level request" << node() << colourTemperature << transitionTime;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandMoveToColourTemperature(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), colourTemperature, transitionTime);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendMoveToColor(double x, double y, quint16 transitionTime)
{
qCDebug(dcZigbeeNode()) << "Move to color request" << node() << x << y << transitionTime;
quint16 normalizedX = static_cast(qRound(x * 65536));
quint16 normalizedY = static_cast(qRound(y * 65536));
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandMoveToColor(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), normalizedX, normalizedY, transitionTime);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendMoveToHueSaturation(quint8 hue, quint8 saturation, quint16 transitionTime)
{
qCDebug(dcZigbeeNode()) << "Move to hue saturation request" << node() << hue << saturation << transitionTime;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandMoveToHueSaturation(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), hue, saturation, transitionTime);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendMoveToHue(quint8 hue, quint16 transitionTime)
{
qCDebug(dcZigbeeNode()) << "Move to hue request" << node() << hue << transitionTime;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandMoveToHue(Zigbee::DestinationAddressModeShortAddress, node()->shortAddress(), 0x01, endpointId(), hue, transitionTime);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
ZigbeeNetworkReply *ZigbeeNodeEndpointNxp::sendMoveToSaturation(quint8 saturation, quint16 transitionTime)
{
qCDebug(dcZigbeeNode()) << "Move to saturation request" << node() << saturation << transitionTime;
ZigbeeNetworkReply *networkReply = createNetworkReply();
ZigbeeInterfaceReply *reply = m_controller->commandMoveToSaturation(Zigbee::DestinationAddressModeShortAddress , node()->shortAddress(), 0x01, endpointId(), saturation, transitionTime);
connect(reply, &ZigbeeInterfaceReply::finished, this, [this, reply, networkReply](){
reply->deleteLater();
if (reply->status() != ZigbeeInterfaceReply::Success) {
qCWarning(dcZigbeeController()) << "Could not" << reply->request().description() << reply->status() << reply->statusErrorMessage();
finishNetworkReply(networkReply, ZigbeeNetworkReply::ErrorUnknown);
return;
}
// Fixme: read default response
qCDebug(dcZigbeeController()) << reply->request().description() << "finished successfully";
finishNetworkReply(networkReply);
});
return networkReply;
}
void ZigbeeNodeEndpointNxp::setClusterAttribute(Zigbee::ClusterId clusterId, const ZigbeeClusterAttribute &attribute)
{
// Check if this cluster is an input cluster
if (hasInputCluster(clusterId)) {
ZigbeeCluster *cluster = getInputCluster(clusterId);
cluster->setAttribute(attribute);
emit clusterAttributeChanged(cluster, attribute);
return;
}
// Check if this cluster is an output cluster
if (hasOutputCluster(clusterId)) {
ZigbeeCluster *cluster = getOutputCluster(clusterId);
cluster->setAttribute(attribute);
emit clusterAttributeChanged(cluster, attribute);
return;
}
// There is no cluster yet. Create it as output cluster if this is not the basic cluster
ZigbeeCluster *cluster = nullptr;
if (clusterId == Zigbee::ClusterIdBasic) {
cluster = new ZigbeeCluster(clusterId, ZigbeeCluster::Input, this);
addInputCluster(cluster);
} else {
cluster = new ZigbeeCluster(clusterId, ZigbeeCluster::Output, this);
addOutputCluster(cluster);
}
cluster->setAttribute(attribute);
emit clusterAttributeChanged(cluster, attribute);
}