From 0570e5c93ced93513416a6e6b64aa762b71f294a Mon Sep 17 00:00:00 2001 From: Robert Borzutzki Date: Thu, 20 Oct 2022 13:36:55 +0200 Subject: [PATCH] fix --- examples/solarmonitor-black.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/solarmonitor-black.py b/examples/solarmonitor-black.py index e1c1364..a050d56 100644 --- a/examples/solarmonitor-black.py +++ b/examples/solarmonitor-black.py @@ -139,10 +139,10 @@ try: #else: drawblack.text((150, 15), str(value_wHouseConsumption) + " W", font = font10, fill = 0) #drawblack.rectangle((150, 30, 220, 50), fill = 255) - #if value_energyImportExport > 0: - #drawred.text((150, 30), str(value_energyImportExport) + " W", font = font10, fill = 0) - #else: - drawblack.text((150, 30), str(value_energyImportExport) + " W", font = font10, fill = 0) + if value_energyImportExport < 0: + drawblack.text((150, 30), str(-value_energyImportExport) + " W", font = font10, fill = 0) + else: + drawblack.text((150, 30), str(value_energyImportExport) + " W", font = font10, fill = 0) #drawblack.rectangle((150, 60, 220, 50), fill = 0) drawblack.text((150, 45), str(value_houseBatterySoC) + " %", font = font10, fill = 0) #drawblack.rectangle((150, 75, 220, 50), fill = 255)