EVerest: fix minor spelling issues

Signed-off-by: Michael Heimpold <michael.heimpold@chargebyte.com>
This commit is contained in:
Michael Heimpold 2024-09-30 14:56:35 +02:00
parent 6185180dce
commit f6342e9d1a
3 changed files with 6 additions and 9 deletions

View File

@ -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

View File

@ -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);

View File

@ -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();
}