diff --git a/everest/README.md b/everest/README.md index 28f9a5b7..ecd85d4b 100644 --- a/everest/README.md +++ b/everest/README.md @@ -1,13 +1,10 @@ # nymea-plugin-everest --------------------------------- -This nymea integration plugin allowes to connecto to any everest instance in the network or localhost with an API module and add every connector configured on the instance. -Each connector has to be added manually using the discovery. Once added, the integration creats an EV charger within nymea which makes it available to the energy manager and the overall nymea eco system. +This nymea integration plugin allows to connect to any EVerest instance in the network or on localhost with an API module and to add every connector configured on this instance. +Each connector has to be added manually using the discovery. Once added, the integration creates an EV charger within nymea which makes it available to the energy manager and the overall nymea eco system. Known issues: -* There is currently no method available on the Everest API module to switch phases +* There is currently no method available on the EVerest API module to switch phases * There are no additional information which could be used to identify the instance, like serialnumber, manufacturer or model * The action execution is not very clean implemented. There is no feedback if the execution was successfully - - diff --git a/everest/everest.cpp b/everest/everest.cpp index d9046934..10705282 100644 --- a/everest/everest.cpp +++ b/everest/everest.cpp @@ -267,7 +267,7 @@ void Everest::onPublishReceived(const QString &topic, const QByteArray &payload, m_thing->setStateValue(everestSessionEnergyStateTypeId, dataMap.value("charged_energy_wh").toDouble() / 1000.0); - // Interprete state + // Interpret state QString stateString = dataMap.value("state").toString(); m_thing->setStateValue(everestStateStateTypeId, stateString); diff --git a/everest/integrationplugineverest.cpp b/everest/integrationplugineverest.cpp index 04dd1f0b..cea8fa7b 100644 --- a/everest/integrationplugineverest.cpp +++ b/everest/integrationplugineverest.cpp @@ -86,7 +86,7 @@ void IntegrationPluginTruffle::discoverThings(ThingDiscoveryInfo *info) descriptor.setParams(params); - // Let's check if we aleardy have a thing with those parms + // Let's check if we aleardy have a thing with those params bool thingExists = true; Thing *existingThing = nullptr; foreach (Thing *thing, myThings()) { @@ -247,7 +247,7 @@ void IntegrationPluginTruffle::thingRemoved(Thing *thing) everestClient->removeThing(thing); if (everestClient->things().isEmpty()) { qCDebug(dcEverest()) << "Deleting" << everestClient << "since there is no thing left"; - // No more things releated to this client, we can delete it + // No more things related to this client, we can delete it m_everstClients.removeAll(everestClient); everestClient->deleteLater(); }