From d777f9c7f44db2a765865d644e59bcaa3dd8ba7d Mon Sep 17 00:00:00 2001 From: Boernsman Date: Wed, 24 Feb 2021 16:23:17 +0100 Subject: [PATCH] fixed inverter thing setup --- sma/integrationpluginsma.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sma/integrationpluginsma.cpp b/sma/integrationpluginsma.cpp index 952951cf..ddc7cfc9 100644 --- a/sma/integrationpluginsma.cpp +++ b/sma/integrationpluginsma.cpp @@ -107,6 +107,7 @@ void IntegrationPluginSma::setupThing(ThingSetupInfo *info) connect(sunnyWebBox, &SunnyWebBox::devicesReceived, this, &IntegrationPluginSma::onDevicesReceived); connect(sunnyWebBox, &SunnyWebBox::processDataReceived, this, &IntegrationPluginSma::onProcessDataReceived); connect(sunnyWebBox, &SunnyWebBox::parameterChannelsReceived, this, &IntegrationPluginSma::onParameterChannelsReceived); + connect(sunnyWebBox, &SunnyWebBox::parametersReceived, this, &IntegrationPluginSma::onParametersReceived); m_sunnyWebBoxes.insert(info->thing(), sunnyWebBox); });