// SPDX-License-Identifier: GPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of nymea-plugins. * * nymea-plugins is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * nymea-plugins 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with nymea-plugins. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "integrationpluginusbrly82.h" #include "plugininfo.h" #include "usbrly82.h" IntegrationPluginUsbRly82::IntegrationPluginUsbRly82() { } void IntegrationPluginUsbRly82::init() { m_monitor = new SerialPortMonitor(this); } void IntegrationPluginUsbRly82::discoverThings(ThingDiscoveryInfo *info) { info->finish(Thing::ThingErrorNoError); } void IntegrationPluginUsbRly82::startMonitoringAutoThings() { // Start seaching for devices which can be discovered and added automatically connect(m_monitor, &SerialPortMonitor::serialPortAdded, this, &IntegrationPluginUsbRly82::onSerialPortAdded); connect(m_monitor, &SerialPortMonitor::serialPortRemoved, this, &IntegrationPluginUsbRly82::onSerialPortRemoved); // Check the initial list of foreach (const SerialPortMonitor::SerialPortInfo &serialPortInfo, m_monitor->serialPortInfos()) { onSerialPortAdded(serialPortInfo); } } void IntegrationPluginUsbRly82::setupThing(ThingSetupInfo *info) { Thing *thing = info->thing(); qCDebug(dcUsbRly82()) << "Setup thing" << thing; // Relay if (info->thing()->thingClassId() == usbRelayThingClassId) { // Search for the serial port with the given serialnumber foreach (const SerialPortMonitor::SerialPortInfo &serialPortInfo, m_monitor->serialPortInfos()) { if (serialPortInfo.serialNumber == thing->paramValue(usbRelayThingSerialNumberParamTypeId).toString()) { qCDebug(dcUsbRly82()) << "Found serial port for" << thing << serialPortInfo; // Handle reconfigure if (m_relays.contains(thing)) { m_relays.take(thing)->deleteLater(); } UsbRly82 *relay = new UsbRly82(this); relay->setAnalogRefreshRate(thing->setting(usbRelaySettingsAnalogRefreshRateParamTypeId).toUInt()); connect(relay, &UsbRly82::availableChanged, thing, [=](bool available){ qCDebug(dcUsbRly82()) << thing << "available changed" << available; thing->setStateValue("connected", available); if (available) { // Set the already fetched information thing->setStateValue(usbRelayPowerRelay1StateTypeId, relay->powerRelay1()); thing->setStateValue(usbRelayPowerRelay2StateTypeId, relay->powerRelay2()); updateDigitalInputs(thing); thing->setStateValue(usbRelayVersionStateTypeId, relay->softwareVersion()); } }); connect(relay, &UsbRly82::powerRelay1Changed, thing, [=](bool power){ qCDebug(dcUsbRly82()) << thing << "relay 1 power changed" << power; thing->setStateValue(usbRelayPowerRelay1StateTypeId, power); }); connect(relay, &UsbRly82::powerRelay2Changed, thing, [=](bool power){ qCDebug(dcUsbRly82()) << thing << "relay 2 power changed" << power; thing->setStateValue(usbRelayPowerRelay2StateTypeId, power); }); connect(relay, &UsbRly82::digitalInputsChanged, thing, [=](){ updateDigitalInputs(thing); }); if (!relay->connectRelay(serialPortInfo.systemLocation)) { qCWarning(dcUsbRly82()) << "Setup failed. Could not connect to relay" << thing; info->finish(Thing::ThingErrorHardwareFailure); relay->deleteLater(); return; } m_relays.insert(thing, relay); info->finish(Thing::ThingErrorNoError); connect(thing, &Thing::settingChanged, this, [=](const ParamTypeId ¶mTypeId, const QVariant &value){ if (paramTypeId == usbRelaySettingsAnalogRefreshRateParamTypeId) { qCDebug(dcUsbRly82()) << "Refrsh rat changed for" << thing << value.toUInt() << "ms"; relay->setAnalogRefreshRate(value.toUInt()); } }); return; } } // Does not seem to be available info->finish(Thing::ThingErrorHardwareNotAvailable); return; } info->finish(Thing::ThingErrorSetupFailed); } void IntegrationPluginUsbRly82::postSetupThing(Thing *thing) { qCDebug(dcUsbRly82()) << "Post setup thing" << thing; } void IntegrationPluginUsbRly82::thingRemoved(Thing *thing) { qCDebug(dcUsbRly82()) << "Remove thing" << thing; if (thing->thingClassId() == usbRelayThingClassId) { UsbRly82 *relay = m_relays.take(thing); if (relay) { delete relay; } } } void IntegrationPluginUsbRly82::executeAction(ThingActionInfo *info) { qCDebug(dcUsbRly82()) << "Executing action for thing" << info->thing() << info->action().actionTypeId().toString() << info->action().params(); if (info->thing()->thingClassId() == usbRelayThingClassId) { Thing *thing = info->thing(); UsbRly82 *relay = m_relays.value(thing); if (!relay) { qCWarning(dcUsbRly82()) << "Could execute action because could not find USB relay for" << thing; info->finish(Thing::ThingErrorHardwareNotAvailable); return; } if (!relay->available()) { qCWarning(dcUsbRly82()) << "Cannot execute action. Relay is not available" << thing; info->finish(Thing::ThingErrorHardwareNotAvailable); return; } if (info->action().actionTypeId() == usbRelayPowerRelay1ActionTypeId) { bool power = info->action().paramValue(usbRelayPowerRelay1ActionPowerRelay1ParamTypeId).toBool(); UsbRly82Reply *reply = relay->setRelay1Power(power); connect(reply, &UsbRly82Reply::finished, info, [=](){ if (reply->error() != UsbRly82Reply::ErrorNoError) { info->finish(Thing::ThingErrorHardwareFailure); return; } info->finish(Thing::ThingErrorNoError); }); return; } else if (info->action().actionTypeId() == usbRelayPowerRelay2ActionTypeId) { bool power = info->action().paramValue(usbRelayPowerRelay2ActionPowerRelay2ParamTypeId).toBool(); UsbRly82Reply *reply = relay->setRelay2Power(power); connect(reply, &UsbRly82Reply::finished, info, [=](){ if (reply->error() != UsbRly82Reply::ErrorNoError) { info->finish(Thing::ThingErrorHardwareFailure); return; } info->finish(Thing::ThingErrorNoError); }); return; } info->finish(Thing::ThingErrorActionTypeNotFound); } info->finish(Thing::ThingErrorThingClassNotFound); } void IntegrationPluginUsbRly82::onSerialPortAdded(const SerialPortMonitor::SerialPortInfo &serialPortInfo) { if (serialPortInfo.vendorId == 0x04d8 && serialPortInfo.productId == 0xffee) { qCDebug(dcUsbRly82()) << "[+] Added" << serialPortInfo; Things alreadyAddedThings = myThings().filterByThingClassId(usbRelayThingClassId).filterByParam(usbRelayThingSerialNumberParamTypeId, serialPortInfo.serialNumber); if (alreadyAddedThings.isEmpty()) { qCDebug(dcUsbRly82()) << "New" << serialPortInfo.product << serialPortInfo.serialNumber << "showed up. Setting up a new thing for this."; ThingDescriptor descriptor(usbRelayThingClassId, "USB-RLY82"); ParamList params; params.append(Param(usbRelayThingSerialNumberParamTypeId, serialPortInfo.serialNumber)); descriptor.setParams(params); emit autoThingsAppeared(ThingDescriptors() << descriptor); } else { Thing *relayThing = alreadyAddedThings.first(); if (relayThing) { qCDebug(dcUsbRly82()) << "Thing already set up for this controller" << relayThing; UsbRly82 *relay = m_relays.value(relayThing); if (relay) { relay->connectRelay(serialPortInfo.systemLocation); } } } } } void IntegrationPluginUsbRly82::onSerialPortRemoved(const SerialPortMonitor::SerialPortInfo &serialPortInfo) { if (serialPortInfo.vendorId == 0x04d8 && serialPortInfo.productId == 0xffee) { qCDebug(dcUsbRly82()) << "[-] Removed" << serialPortInfo; } } void IntegrationPluginUsbRly82::updateDigitalInputs(Thing *thing) { UsbRly82 *relay = m_relays.value(thing); if (!relay) return; qCDebug(dcUsbRly82()) << thing << "digital inputs changed:" << QString("%1").arg(relay->digitalInputs(), 8, 2, QChar('0')); thing->setStateValue(usbRelayDigitalInputChannel1StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 0)); thing->setStateValue(usbRelayDigitalInputChannel2StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 1)); thing->setStateValue(usbRelayDigitalInputChannel3StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 2)); thing->setStateValue(usbRelayDigitalInputChannel4StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 3)); thing->setStateValue(usbRelayDigitalInputChannel5StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 4)); thing->setStateValue(usbRelayDigitalInputChannel6StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 5)); thing->setStateValue(usbRelayDigitalInputChannel7StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 6)); thing->setStateValue(usbRelayDigitalInputChannel8StateTypeId, UsbRly82::checkBit(relay->digitalInputs(), 7)); }