Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions localazy/source/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"btn_reset": "Factory reset",
"cloud": {
"ams": "AMS reader cloud",
"es": "Energy Speedometer",
"title": "Cloud connections"
},
"common": {
Expand Down Expand Up @@ -465,7 +464,6 @@
"cloud": "Cloud",
"mqtt": "MQTT",
"mqtt_c": "MQTT (custom)",
"mqtt_es": "Energy speedometer",
"none": "No services configured",
"ntp": "NTP",
"price": "Price service",
Expand Down
10 changes: 8 additions & 2 deletions src/AmsToMqttBridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,14 @@ MqttConfig energySpeedometerConfig = {
#else
"",
#endif
0,
true
0, // payloadFormat
true, // ssl
0, // magic
false, // stateUpdate
0, // stateUpdateInterval
1000, // timeout (ms)
60, // keepalive (s)
0 // rebootMinutes
};
#endif

Expand Down
6 changes: 3 additions & 3 deletions ui/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/src/lib/ServicesTile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
const defaultLabels = {
mqtt: "MQTT",
mqtt_c: "MQTT (custom)",
mqtt_es: "Energy speedometer",
mqtt_es: "Flexpartner.Energy",
price: "Price service",
ntp: "NTP",
cloud: "Cloud",
Expand Down
2 changes: 1 addition & 1 deletion ui/src/routes/ConfigurationRoute.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@
</div>
{/if}
<div class="my-1">
<label><input type="checkbox" class="rounded mb-1" name="ces" value="true" bind:checked={configuration.c.es}/> {translations.conf?.cloud?.es ?? "Energy Speedometer"}</label>
<label><input type="checkbox" class="rounded mb-1" name="ces" value="true" bind:checked={configuration.c.es}/> Flexpartner.Energy
{#if configuration?.c?.es}
<div class="pl-5">MAC: {sysinfo.mac}</div>
<div class="pl-5">Meter ID: {sysinfo.meter.id ? sysinfo.meter.id : "missing, required"}</div>
Expand Down
Loading