From 40ac15a73638b0a899bc9b9a4693ccaab8262f3c Mon Sep 17 00:00:00 2001 From: Boernsman Date: Tue, 18 Feb 2020 18:57:31 +0500 Subject: [PATCH] added broadcast --- keba/integrationpluginkeba.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/keba/integrationpluginkeba.cpp b/keba/integrationpluginkeba.cpp index fa733892..9a8d2188 100644 --- a/keba/integrationpluginkeba.cpp +++ b/keba/integrationpluginkeba.cpp @@ -98,6 +98,7 @@ void IntegrationPluginKeba::setupThing(ThingSetupInfo *info) connect(keba, &KeContact::reportOneReceived, this, &DevicePluginKeba::onReportOneReceived); connect(keba, &KeContact::reportTwoReceived, this, &DevicePluginKeba::onReportTwoReceived); connect(keba, &KeContact::reportThreeReceived, this, &DevicePluginKeba::onReportThreeReceived); + connect(keba, &KeContact::broadcastReceived, this, &DevicePluginKeba::onBroadcastReceived); if (!keba->init()){ qCWarning(dcKebaKeContact()) << "Cannot bind to port" << 7090; keba->deleteLater();