From 30f7f12ddea200370057bb27fad8d17c860ea759 Mon Sep 17 00:00:00 2001 From: Robert Borzutzki Date: Thu, 20 Oct 2022 09:12:36 +0200 Subject: [PATCH] negative to positive --- examples/mqtt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mqtt.py b/examples/mqtt.py index 8c766ee..f01c1e0 100644 --- a/examples/mqtt.py +++ b/examples/mqtt.py @@ -125,7 +125,7 @@ try: drawred.text((5, 60), 'Batterie Entladen', font = font10, fill = 0) logging.info("-----") - logging.info("PvPord: "+str(value_pvProduction)) + logging.info("PvPord: "+str(-value_pvProduction)) logging.info("HouseU: "+str(value_wHouseConsumption)) logging.info("EneI/E: "+str(value_energyImportExport)) logging.info("BatSoC: "+str(value_houseBatterySoC))