diff --git a/keba/integrationpluginkeba.cpp b/keba/integrationpluginkeba.cpp index 28346d77..b119838f 100644 --- a/keba/integrationpluginkeba.cpp +++ b/keba/integrationpluginkeba.cpp @@ -378,11 +378,6 @@ void IntegrationPluginKeba::searchNetworkDevices() }); } -void IntegrationPluginKeba::onDiscoveryWaitUpdResponseTimeout() -{ - -} - void IntegrationPluginKeba::onConnectionChanged(bool status) { KeContact *keba = static_cast(sender()); @@ -632,7 +627,7 @@ void IntegrationPluginKeba::executeAction(ThingActionInfo *info) if (action.actionTypeId() == wallboxMaxChargingCurrentActionTypeId) { int milliAmpere = action.paramValue(wallboxMaxChargingCurrentActionMaxChargingCurrentParamTypeId).toUInt() * 1000; requestId = keba->setMaxAmpereGeneral(milliAmpere); - // Note: since the response only indicates the successfull receiving of the command, + // Note: since the response only indicates the successful receiving of the command, // and we only can request the report every 2 seconds as verification, lets set the value right the way // to prevent jitter while moving the slider //thing->setStateValue(wallboxMaxChargingCurrentStateTypeId, action.paramValue(wallboxMaxChargingCurrentActionMaxChargingCurrentParamTypeId).toUInt()); diff --git a/keba/integrationpluginkeba.h b/keba/integrationpluginkeba.h index aa982bfa..0006d8a4 100644 --- a/keba/integrationpluginkeba.h +++ b/keba/integrationpluginkeba.h @@ -79,8 +79,6 @@ private: void searchNetworkDevices(); private slots: - void onDiscoveryWaitUpdResponseTimeout(); - void onConnectionChanged(bool status); void onCommandExecuted(QUuid requestId, bool success); void onReportTwoReceived(const KeContact::ReportTwo &reportTwo);