change file name
This commit is contained in:
parent
348d6dd2f3
commit
2127471310
@ -9,7 +9,6 @@ if os.path.exists(libdir):
|
|||||||
|
|
||||||
import logging
|
import logging
|
||||||
from waveshare_epd import epd2in13b_V3
|
from waveshare_epd import epd2in13b_V3
|
||||||
#import waveshare-epaper
|
|
||||||
import time
|
import time
|
||||||
from PIL import Image,ImageDraw,ImageFont
|
from PIL import Image,ImageDraw,ImageFont
|
||||||
import traceback
|
import traceback
|
||||||
@ -17,9 +16,6 @@ import traceback
|
|||||||
|
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#Define Display
|
#Define Display
|
||||||
epd = epd2in13b_V3.EPD()
|
epd = epd2in13b_V3.EPD()
|
||||||
epd.init()
|
epd.init()
|
||||||
@ -34,9 +30,6 @@ HRYimage = Image.new('1', (epd.height, epd.width), 255) # 298*126 ryimage: red
|
|||||||
drawblack = ImageDraw.Draw(HBlackimage)
|
drawblack = ImageDraw.Draw(HBlackimage)
|
||||||
#drawry = ImageDraw.Draw(HRYimage)
|
#drawry = ImageDraw.Draw(HRYimage)
|
||||||
|
|
||||||
#!/usr/bin/env python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import datetime
|
import datetime
|
||||||
import locale
|
import locale
|
||||||
@ -44,10 +37,13 @@ import locale
|
|||||||
loc = locale.getlocale()
|
loc = locale.getlocale()
|
||||||
print (loc)
|
print (loc)
|
||||||
|
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta, date
|
||||||
# Zwei datetime-Objekte erstellen
|
# Zwei datetime-Objekte erstellen
|
||||||
start_time = datetime(2024, 6, 1, 0, 0, 0)
|
# from datetime import date
|
||||||
end_time = datetime(2024, 6, 10, 0, 0, 0)
|
|
||||||
|
start_time = date.today()
|
||||||
|
print(start_time.strftime("%d.%m.%Y"))
|
||||||
|
end_time = date(2025, 6, 10)
|
||||||
# Zeitdelta berechnen
|
# Zeitdelta berechnen
|
||||||
duration = end_time - start_time
|
duration = end_time - start_time
|
||||||
print(duration) # Ausgabe: 9 Tage, 2:30:00
|
print(duration) # Ausgabe: 9 Tage, 2:30:00
|
||||||
@ -67,7 +63,7 @@ def init_monitor(topics):
|
|||||||
|
|
||||||
# Drawing on the Horizontal image
|
# Drawing on the Horizontal image
|
||||||
logging.info("1.Drawing on the Horizontal image...")
|
logging.info("1.Drawing on the Horizontal image...")
|
||||||
drawblack.text((4, 0), 'PV Production', font = font16, fill = 0)
|
drawblack.text((4, 0), 'Noch: ' + duration + 'bis', font = font16, fill = 0)
|
||||||
drawblack.text((4, 16), 'Hausverbrauch', font = font16, fill = 0)
|
drawblack.text((4, 16), 'Hausverbrauch', font = font16, fill = 0)
|
||||||
drawblack.text((4, 32), 'Strom Import', font = font16, fill = 0)
|
drawblack.text((4, 32), 'Strom Import', font = font16, fill = 0)
|
||||||
drawblack.text((4, 48), 'Batterie', font = font16, fill = 0)
|
drawblack.text((4, 48), 'Batterie', font = font16, fill = 0)
|
||||||
@ -85,16 +81,6 @@ def init_monitor(topics):
|
|||||||
logging.info("Goto Sleep...")
|
logging.info("Goto Sleep...")
|
||||||
epd.sleep()
|
epd.sleep()
|
||||||
|
|
||||||
#except IOError as e:
|
|
||||||
# logging.info(e)
|
|
||||||
|
|
||||||
#except KeyboardInterrupt:
|
|
||||||
# logging.info("ctrl + c:")
|
|
||||||
# epd2in13b_V3.epdconfig.module_exit()
|
|
||||||
# exit()
|
|
||||||
|
|
||||||
#client.loop_forever()
|
|
||||||
|
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
try:
|
try:
|
0
examples/time-diff.py
Normal file
0
examples/time-diff.py
Normal file
Loading…
Reference in New Issue
Block a user