-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.go
executable file
·523 lines (453 loc) · 17.5 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
package main
import (
"flag"
"fmt"
"os"
"regexp"
"strconv"
"strings"
"time"
mqtt "github.com/eclipse/paho.mqtt.golang"
"github.com/godbus/dbus/introspect"
"github.com/godbus/dbus/v5"
log "github.com/sirupsen/logrus"
)
/* Configuration */
var (
broker = "192.168.1.119"
brokerPort = 1883
topic = "stromzaehler/#"
clientId = "sdm630-bridge"
username = "user"
password = "pass"
)
var P1 float64 = 0.00
var P2 float64 = 0.00
var P3 float64 = 0.00
var psum float64 = 0.00
var psum_update bool = true
var value_correction bool = false
var conn, err = dbus.SystemBus()
type singlePhase struct {
voltage float32 // Volts: 230,0
curent float32 // Amps: 8,3
power float32 // Watts: 1909
forward float64 // kWh, purchased power
reverse float64 // kWh, sold power
}
const intro = `
<node>
<interface name="com.victronenergy.BusItem">
<signal name="PropertiesChanged">
<arg type="a{sv}" name="properties" />
</signal>
<method name="SetValue">
<arg direction="in" type="v" name="value" />
<arg direction="out" type="i" />
</method>
<method name="GetText">
<arg direction="out" type="s" />
</method>
<method name="GetValue">
<arg direction="out" type="v" />
</method>
</interface>` + introspect.IntrospectDataString + `</node> `
type objectpath string
var victronValues = map[int]map[objectpath]dbus.Variant{
// 0: This will be used to store the VALUE variant
0: map[objectpath]dbus.Variant{},
// 1: This will be used to store the STRING variant
1: map[objectpath]dbus.Variant{},
}
func (f objectpath) GetValue() (dbus.Variant, *dbus.Error) {
log.Debug("GetValue() called for ", f)
log.Debug("...returning ", victronValues[0][f])
return victronValues[0][f], nil
}
func (f objectpath) GetText() (string, *dbus.Error) {
log.Debug("GetText() called for ", f)
log.Debug("...returning ", victronValues[1][f])
// Why does this end up ""SOMEVAL"" ... trim it I guess
return strings.Trim(victronValues[1][f].String(), "\""), nil
}
func init() {
lvl, ok := os.LookupEnv("LOG_LEVEL")
if !ok {
lvl = "info"
}
ll, err := log.ParseLevel(lvl)
if err != nil {
ll = log.DebugLevel
}
log.SetLevel(ll)
}
func main() {
// Parse command line arguments
flag.StringVar(&broker, "broker", broker, "MQTT broker address")
flag.IntVar(&brokerPort, "port", brokerPort, "MQTT broker port")
flag.StringVar(&topic, "topic", topic, "MQTT topic prefix")
flag.StringVar(&clientId, "client-id", clientId, "MQTT client id")
flag.StringVar(&username, "username", username, "MQTT username")
flag.StringVar(&password, "password", password, "MQTT password")
flag.Parse()
// Need to implement following paths:
// https://github.com/victronenergy/venus/wiki/dbus#grid-meter
// also in system.py
victronValues[0]["/Connected"] = dbus.MakeVariant(1)
victronValues[1]["/Connected"] = dbus.MakeVariant("1")
victronValues[0]["/CustomName"] = dbus.MakeVariant("Grid meter")
victronValues[1]["/CustomName"] = dbus.MakeVariant("Grid meter")
victronValues[0]["/DeviceInstance"] = dbus.MakeVariant(30)
victronValues[1]["/DeviceInstance"] = dbus.MakeVariant("30")
// also in system.py
victronValues[0]["/DeviceType"] = dbus.MakeVariant(71)
victronValues[1]["/DeviceType"] = dbus.MakeVariant("71")
victronValues[0]["/ErrorCode"] = dbus.MakeVariantWithSignature(0, dbus.SignatureOf(123))
victronValues[1]["/ErrorCode"] = dbus.MakeVariant("0")
victronValues[0]["/FirmwareVersion"] = dbus.MakeVariant(2)
victronValues[1]["/FirmwareVersion"] = dbus.MakeVariant("2")
// also in system.py
victronValues[0]["/Mgmt/Connection"] = dbus.MakeVariant("/dev/ttyUSB0")
victronValues[1]["/Mgmt/Connection"] = dbus.MakeVariant("/dev/ttyUSB0")
victronValues[0]["/Mgmt/ProcessName"] = dbus.MakeVariant("/opt/color-control/dbus-cgwacs/dbus-cgwacs")
victronValues[1]["/Mgmt/ProcessName"] = dbus.MakeVariant("/opt/color-control/dbus-cgwacs/dbus-cgwacs")
victronValues[0]["/Mgmt/ProcessVersion"] = dbus.MakeVariant("1.8.0")
victronValues[1]["/Mgmt/ProcessVersion"] = dbus.MakeVariant("1.8.0")
victronValues[0]["/Position"] = dbus.MakeVariantWithSignature(0, dbus.SignatureOf(123))
victronValues[1]["/Position"] = dbus.MakeVariant("0")
// also in system.py
victronValues[0]["/ProductId"] = dbus.MakeVariant(45058)
victronValues[1]["/ProductId"] = dbus.MakeVariant("45058")
// also in system.py
victronValues[0]["/ProductName"] = dbus.MakeVariant("Grid meter")
victronValues[1]["/ProductName"] = dbus.MakeVariant("Grid meter")
victronValues[0]["/Serial"] = dbus.MakeVariant("BP98305081235")
victronValues[1]["/Serial"] = dbus.MakeVariant("BP98305081235")
// Provide some initial values... note that the values must be a valid formt otherwise dbus_systemcalc.py exits like this:
// @400000005ecc11bf3782b374 File "/opt/victronenergy/dbus-systemcalc-py/dbus_systemcalc.py", line 386, in _handletimertick
// @400000005ecc11bf37aa251c self._updatevalues()
// @400000005ecc11bf380e74cc File "/opt/victronenergy/dbus-systemcalc-py/dbus_systemcalc.py", line 678, in _updatevalues
// @400000005ecc11bf383ab4ec c = _safeadd(c, p, pvpower)
// @400000005ecc11bf386c9674 File "/opt/victronenergy/dbus-systemcalc-py/sc_utils.py", line 13, in safeadd
// @400000005ecc11bf387b28ec return sum(values) if values else None
// @400000005ecc11bf38b2bb7c TypeError: unsupported operand type(s) for +: 'int' and 'unicode'
//
victronValues[0]["/Ac/L1/Power"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L1/Power"] = dbus.MakeVariant("0 W")
victronValues[0]["/Ac/L2/Power"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L2/Power"] = dbus.MakeVariant("0 W")
victronValues[0]["/Ac/L3/Power"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L3/Power"] = dbus.MakeVariant("0 W")
victronValues[0]["/Ac/L1/Voltage"] = dbus.MakeVariant(230)
victronValues[1]["/Ac/L1/Voltage"] = dbus.MakeVariant("230 V")
victronValues[0]["/Ac/L2/Voltage"] = dbus.MakeVariant(230)
victronValues[1]["/Ac/L2/Voltage"] = dbus.MakeVariant("230 V")
victronValues[0]["/Ac/L3/Voltage"] = dbus.MakeVariant(230)
victronValues[1]["/Ac/L3/Voltage"] = dbus.MakeVariant("230 V")
victronValues[0]["/Ac/L1/Current"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L1/Current"] = dbus.MakeVariant("0 A")
victronValues[0]["/Ac/L2/Current"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L2/Current"] = dbus.MakeVariant("0 A")
victronValues[0]["/Ac/L3/Current"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L3/Current"] = dbus.MakeVariant("0 A")
victronValues[0]["/Ac/L1/Energy/Forward"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L1/Energy/Forward"] = dbus.MakeVariant("0 kWh")
victronValues[0]["/Ac/L2/Energy/Forward"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L2/Energy/Forward"] = dbus.MakeVariant("0 kWh")
victronValues[0]["/Ac/L3/Energy/Forward"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L3/Energy/Forward"] = dbus.MakeVariant("0 kWh")
victronValues[0]["/Ac/L1/Energy/Reverse"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L1/Energy/Reverse"] = dbus.MakeVariant("0 kWh")
victronValues[0]["/Ac/L2/Energy/Reverse"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L2/Energy/Reverse"] = dbus.MakeVariant("0 kWh")
victronValues[0]["/Ac/L3/Energy/Reverse"] = dbus.MakeVariant(0.0)
victronValues[1]["/Ac/L3/Energy/Reverse"] = dbus.MakeVariant("0 kWh")
basicPaths := []dbus.ObjectPath{
"/Connected",
"/CustomName",
"/DeviceInstance",
"/DeviceType",
"/ErrorCode",
"/FirmwareVersion",
"/Mgmt/Connection",
"/Mgmt/ProcessName",
"/Mgmt/ProcessVersion",
"/Position",
"/ProductId",
"/ProductName",
"/Serial",
}
updatingPaths := []dbus.ObjectPath{
"/Ac/L1/Power",
"/Ac/L2/Power",
"/Ac/L3/Power",
"/Ac/L1/Voltage",
"/Ac/L2/Voltage",
"/Ac/L3/Voltage",
"/Ac/L1/Current",
"/Ac/L2/Current",
"/Ac/L3/Current",
"/Ac/L1/Energy/Forward",
"/Ac/L2/Energy/Forward",
"/Ac/L3/Energy/Forward",
"/Ac/L1/Energy/Reverse",
"/Ac/L2/Energy/Reverse",
"/Ac/L3/Energy/Reverse",
}
defer conn.Close()
// Some of the victron stuff requires it be called grid.cgwacs... using the only known valid value (from the simulator)
// This can _probably_ be changed as long as it matches com.victronenergy.grid.cgwacs_*
reply, err := conn.RequestName("com.victronenergy.grid.cgwacs_ttyUSB0_di30_mb1",
dbus.NameFlagDoNotQueue)
if err != nil {
log.Panic("Something went horribly wrong in the dbus connection")
panic(err)
}
if reply != dbus.RequestNameReplyPrimaryOwner {
log.Panic("name cgwacs_ttyUSB0_di30_mb1 already taken on dbus.")
os.Exit(1)
}
for i, s := range basicPaths {
log.Debug("Registering dbus basic path #", i, ": ", s)
conn.Export(objectpath(s), s, "com.victronenergy.BusItem")
conn.Export(introspect.Introspectable(intro), s, "org.freedesktop.DBus.Introspectable")
}
for i, s := range updatingPaths {
log.Debug("Registering dbus update path #", i, ": ", s)
conn.Export(objectpath(s), s, "com.victronenergy.BusItem")
conn.Export(introspect.Introspectable(intro), s, "org.freedesktop.DBus.Introspectable")
}
log.Info("Successfully connected to dbus and registered as a meter... Commencing reading of the SDM630 meter")
// MQTT Subscripte
opts := mqtt.NewClientOptions()
opts.AddBroker(fmt.Sprintf("tcp://%s:%d", broker, brokerPort))
opts.SetClientID(clientId)
opts.SetUsername(username)
opts.SetPassword(password)
opts.SetDefaultPublishHandler(messagePubHandler)
opts.OnConnect = connectHandler
opts.OnConnectionLost = connectLostHandler
client := mqtt.NewClient(opts)
if token := client.Connect(); token.Wait() && token.Error() != nil {
panic(token.Error())
}
sub(client)
// Infinite loop
for true {
// fmt.Println("Infinite Loop entered")
time.Sleep(time.Second)
}
// This is a forever loop^^
panic("Error: We terminated.... how did we ever get here?")
}
/* MQTT Subscribe Function */
func sub(client mqtt.Client) {
topic := topic
token := client.Subscribe(topic, 1, nil)
token.Wait()
log.Info("Subscribed to topic: " + topic)
}
/* MQTT Publish Function */
func publish(client mqtt.Client) {
num := 10
for i := 0; i < num; i++ {
text := fmt.Sprintf("Message %d", i)
token := client.Publish("topic/test", 0, false, text)
token.Wait()
time.Sleep(time.Second)
}
}
/* Write dbus Values to Victron handler */
func updateVariant(value float64, unit string, path string) {
emit := make(map[string]dbus.Variant)
emit["Text"] = dbus.MakeVariant(fmt.Sprintf("%.2f", value) + unit)
emit["Value"] = dbus.MakeVariant(float64(value))
victronValues[0][objectpath(path)] = emit["Value"]
victronValues[1][objectpath(path)] = emit["Text"]
conn.Emit(dbus.ObjectPath(path), "com.victronenergy.BusItem.PropertiesChanged", emit)
}
/* Convert binary to float64 */
func bin2Float64(bin string) float64 {
foostring := string(bin)
result, err := strconv.ParseFloat(foostring, 64)
if err != nil {
panic(err)
}
return result
}
/* Called if connection is established */
var connectHandler mqtt.OnConnectHandler = func(client mqtt.Client) {
log.Info(fmt.Sprintf("Connected to broker %s:%d", broker, brokerPort))
}
/* Called if connection is lost */
var connectLostHandler mqtt.ConnectionLostHandler = func(client mqtt.Client, err error) {
log.Info(fmt.Sprintf("Connect lost: %v", err))
os.Exit(1)
}
/* Search for string with regex */
func ContainString(searchstring string, str string) bool {
var obj bool
obj, err = regexp.MatchString(searchstring, str)
if err != nil {
panic(err)
}
return obj
}
/* MQTT Subscribe Handler */
var messagePubHandler mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) {
log.Debug(fmt.Sprintf("Received message: %s from topic: %s\n", msg.Payload(), msg.Topic()))
value_correction = false
// Power L1
if ContainString(".*Power/L1$", msg.Topic()) {
P1 = bin2Float64(string(msg.Payload()))
// if (P1 > 0) {
// updateVariant(float64(P1), "W", "/Ac/L1/Power")
// log.Debug(fmt.Sprintf("L1 Power: %.3f W" ,P1))
// psum_update=true
// } else {
// value_correction=true
// log.Info(fmt.Sprintf("Rückeinspeisung L1: %.3f W" ,P1))
// updateVariant(float64(0.00), "W", "/Ac/L1/Power")
// }
//
updateVariant(float64(P1), "W", "/Ac/L1/Power")
}
// Power L2
if ContainString(".*Power/L2$", msg.Topic()) {
P2 = bin2Float64(string(msg.Payload()))
// if (P2 > 0) {
// updateVariant(float64(P2), "W", "/Ac/L2/Power")
// log.Debug(fmt.Sprintf("L2 Power: %.3f W" ,P2))
// psum_update=true
// } else {
// value_correction=true
// log.Info(fmt.Sprintf("Rückeinspeisung L2: %.3f W" ,P2))
// updateVariant(float64(0.00), "W", "/Ac/L2/Power")
// }
updateVariant(float64(P2), "W", "/Ac/L2/Power")
}
// Power L3
if ContainString(".*Power/L3$", msg.Topic()) {
P3 = bin2Float64(string(msg.Payload()))
// if (P3 > 0) {
// updateVariant(float64(P3), "W", "/Ac/L3/Power")
// log.Debug(fmt.Sprintf("L3 Power: %.3f W" ,P3))
// psum_update=true
// } else {
// value_correction=true
// log.Info(fmt.Sprintf("Rückeinspeisung L3: %.3f W" ,P3))
// updateVariant(float64(0.00), "W", "/Ac/L3/Power")
// }
updateVariant(float64(P3), "W", "/Ac/L3/Power")
}
// Summe aller drei Phasen
// if psum_update {
// psum := psum + (P1+P2+P3)
// if psum < 0 {
// log.Info(fmt.Sprintf("Kein Verbrauch: %d W", psum))
// updateVariant(float64(0.00), "W", "/Ac/L1/Power")
// updateVariant(float64(0.00), "W", "/Ac/L2/Power")
// updateVariant(float64(0.00), "W", "/Ac/L3/Power")
// }
// psum_update=false
// // FIXME
// if value_correction {
// psum := (P1+P2+P3)/3
// updateVariant(float64(psum), "W", "/Ac/L1/Power")
// updateVariant(float64(psum), "W", "/Ac/L2/Power")
// updateVariant(float64(psum), "W", "/Ac/L3/Power")
// log.Info(fmt.Sprintf("Phasensumme wurde korrigiert! %.2f W" ,psum))
// }
// log.Debug(fmt.Sprintf("Summe aller Phasen: %.2f W" ,psum))
// }
// /Ac/Energy/Forward <- kWh - bought energy (total of all phases)
if ContainString(".*/Import$", msg.Topic()) {
IP := bin2Float64(string(msg.Payload()))
updateVariant(float64(IP), "kWh", "/Ac/Energy/Forward")
log.Debug(fmt.Sprintf("Import Power: %.3f kWh", IP))
}
// /Ac/Energy/Reverse <- kWh - sold energy (total of all phases)
if ContainString(".*/Export$", msg.Topic()) {
EP := bin2Float64(string(msg.Payload()))
updateVariant(float64(EP), "kWh", "/Ac/Energy/Reverse")
log.Debug(fmt.Sprintf("Export Power: %.3f kWh", EP))
}
// /Ac/Power <- W - total of all phases, real power
if ContainString(".*/Power$", msg.Topic()) {
TP := bin2Float64(string(msg.Payload()))
updateVariant(float64(TP), "W", "/Ac/Power")
log.Debug(fmt.Sprintf("Total Power: %.3f W", TP))
}
// /Ac/L1/Current <- A AC
if ContainString(".*/Current/L1$", msg.Topic()) {
CL1 := bin2Float64(string(msg.Payload()))
updateVariant(float64(CL1), "A", "/Ac/L1/Current")
log.Debug(fmt.Sprintf("Current L1: %.3f A", CL1))
}
// /Ac/L2/Current <- A AC
if ContainString(".*/Current/L2$", msg.Topic()) {
CL2 := bin2Float64(string(msg.Payload()))
updateVariant(float64(CL2), "A", "/Ac/L2/Current")
log.Debug(fmt.Sprintf("Current L2: %.3f A", CL2))
}
// /Ac/L3/Current <- A AC
if ContainString(".*/Current/L3$", msg.Topic()) {
CL3 := bin2Float64(string(msg.Payload()))
updateVariant(float64(CL3), "A", "/Ac/L3/Current")
log.Debug(fmt.Sprintf("Current L3: %.3f A", CL3))
}
// /Ac/L1/Voltage <- V AC
if ContainString(".*/Voltage/L1$", msg.Topic()) {
VL1 := bin2Float64(string(msg.Payload()))
updateVariant(float64(VL1), "V", "/Ac/L1/Voltage")
log.Debug(fmt.Sprintf("Voltage L1: %.3f V", VL1))
}
// /Ac/L2/Voltage <- V AC
if ContainString(".*/Voltage/L2$", msg.Topic()) {
VL2 := bin2Float64(string(msg.Payload()))
updateVariant(float64(VL2), "V", "/Ac/L2/Voltage")
log.Debug(fmt.Sprintf("Voltage L2: %.3f V", VL2))
}
// /Ac/L3/Voltage <- V AC
if ContainString(".*/Voltage/L3$", msg.Topic()) {
VL3 := bin2Float64(string(msg.Payload()))
updateVariant(float64(VL3), "V", "/Ac/L3/Voltage")
log.Debug(fmt.Sprintf("Voltage L3: %.3f V", VL3))
}
// /Ac/L1/Energy/Forward <- kWh - bought
if ContainString(".*/Sum/L1$", msg.Topic()) {
SL1 := bin2Float64(string(msg.Payload()))
updateVariant(float64(SL1), "kWh", "/Ac/L1/Energy/Forward")
log.Debug(fmt.Sprintf("Energy Forward L1: %.3f kWh", SL1))
}
// /Ac/L2/Energy/Forward <- kWh - bought
if ContainString(".*/Sum/L2$", msg.Topic()) {
SL2 := bin2Float64(string(msg.Payload()))
updateVariant(float64(SL2), "kWh", "/Ac/L2/Energy/Forward")
log.Debug(fmt.Sprintf("Energy Forward L2: %.3f kWh", SL2))
}
// /Ac/L3/Energy/Forward <- kWh - bought
if ContainString(".*/Sum/L3$", msg.Topic()) {
SL3 := bin2Float64(string(msg.Payload()))
updateVariant(float64(SL3), "kWh", "/Ac/L3/Energy/Forward")
log.Debug(fmt.Sprintf("Energy Forward L3: %.3f kWh", SL3))
}
// /Ac/L1/Energy/Reverse <- kWh - bought
if ContainString(".*/Export/L1$", msg.Topic()) {
EL1 := bin2Float64(string(msg.Payload()))
updateVariant(float64(EL1), "kWh", "/Ac/L1/Energy/Reverse")
log.Debug(fmt.Sprintf("Energy Reverse L1: %.3f kWh", EL1))
}
// /Ac/L2/Energy/Reverse <- kWh - bought
if ContainString(".*/Export/L2$", msg.Topic()) {
EL2 := bin2Float64(string(msg.Payload()))
updateVariant(float64(EL2), "kWh", "/Ac/L2/Energy/Reverse")
log.Debug(fmt.Sprintf("Energy Reverse L2: %.3f kWh", EL2))
}
// /Ac/L3/Energy/Reverse <- kWh - bought
if ContainString(".*/Export/L3$", msg.Topic()) {
EL3 := bin2Float64(string(msg.Payload()))
updateVariant(float64(EL3), "kWh", "/Ac/L3/Energy/Reverse")
log.Debug(fmt.Sprintf("Energy Reverse L3: %.3f kWh", EL3))
}
}