From f8d0037f254fd2886558ed2ca6eabe2e2bf1411a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Thu, 30 Sep 2021 20:54:31 +0200 Subject: [PATCH] Update currtime to use 1 second --- keba/kecontact.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keba/kecontact.cpp b/keba/kecontact.cpp index e550f905..1f3ca12b 100644 --- a/keba/kecontact.cpp +++ b/keba/kecontact.cpp @@ -202,7 +202,7 @@ QUuid KeContact::setMaxAmpere(int milliAmpere) // Print information that we are executing now the update action qCDebug(dcKeba()) << "Update max current to : " << milliAmpere; - QString commandLine = QString("currtime %1 0").arg(milliAmpere); + QString commandLine = QString("currtime %1 1").arg(milliAmpere); QByteArray datagram = commandLine.toUtf8(); KeContactRequest request(QUuid::createUuid(), datagram); request.setDelayUntilNextCommand(1200);