From 81903d2883fe3219cf1cb9e7d67e233ec1699d8e Mon Sep 17 00:00:00 2001 From: rintyuu Date: Fri, 13 Sep 2024 19:28:01 -0700 Subject: [PATCH] added status5.py --- status/__pycache__/epd2in13_V3.cpython-39.pyc | Bin 7462 -> 7476 bytes status/__pycache__/epdconfig.cpython-39.pyc | Bin 6686 -> 6700 bytes status/status5.py | 108 ++++++++++++++++++ status/status5.py.save | 107 +++++++++++++++++ 4 files changed, 215 insertions(+) create mode 100644 status/status5.py create mode 100644 status/status5.py.save diff --git a/status/__pycache__/epd2in13_V3.cpython-39.pyc b/status/__pycache__/epd2in13_V3.cpython-39.pyc index 4e3d853bab7c73b7aaaad0fa4deff7896630b68f..c6521261942f7190ac21378d2b86b6be72630f67 100644 GIT binary patch delta 256 zcmZ2xwZ)1%k(ZZ?0SGoff3lHVfl0 delta 261 zcmdmDwakh;k(ZZ?0SMd|J>JNzz{IDlpOK%Ns$Z0uS5jG8y4js+ix6Yf5Q z0;+kb1|&3@ikp_q`01=s!-%8%(O$5oY6>)<^VkTdfQe#Y>{7Y&jZxnZKeoARh zYJ6%%X36A_yrPqjN{2CKOqP*xl}Z39P6ZKJAR-4uAG; fr5CY+#6eyx;sFv-oaw10K0v9|qN0My-(>6n3yexG diff --git a/status/__pycache__/epdconfig.cpython-39.pyc b/status/__pycache__/epdconfig.cpython-39.pyc index 9d5ce134fc5bf587b823eaf17fcd24142c15e011..2e998829bb326166cac0d73d8139046db2b91ea5 100644 GIT binary patch delta 54 zcmbPdvc`lvk(ZZ?0SGoff3lHVgh@tUKO;XkRlg`RucWfHRKGm2EVVczu_#qHwIF4) IF4ISG0L`QlN&o-= delta 40 ucmZ2uGS7rNk(ZZ?0SMd|J>JMI!o;VjpOK%Ns$Z0uS5jG8y4jlPqc{NEPz)~s diff --git a/status/status5.py b/status/status5.py new file mode 100644 index 0000000..d5dc736 --- /dev/null +++ b/status/status5.py @@ -0,0 +1,108 @@ +import sys +import os +import subprocess +import logging +import epd2in13_V3 +import time +from PIL import Image, ImageDraw, ImageFont + +picdir = os.path.dirname(os.path.realpath(__file__)) +libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib') +if os.path.exists(libdir): + sys.path.append(libdir) + +logging.basicConfig(level=logging.DEBUG) + +def get_wifi_status(): + try: + # Get the SSID of the currently connected Wi-Fi network + result = subprocess.run(['iwgetid', '-r'], capture_output=True, text=True) + ssid = result.stdout.strip() + + # Get the local IPv4 address + ip_result = subprocess.run(['hostname', '-I'], capture_output=True, text=True) + ip_address = ip_result.stdout.strip().split()[0] if ip_result.stdout else "N/A" + + if ssid: + return "OK", ssid, ip_address + else: + return "Disconnected", "N/A", "N/A" + except Exception as e: + return "Error", str(e), "N/A" + +def main(): + try: + logging.info("epd2in13_V3 datetime and network info") + + epd = epd2in13_V3.EPD() + logging.info("init and Clear") + epd.init() + epd.Clear(0xFF) + + # Load fonts + font18 = ImageFont.truetype('/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf', 18) + font16 = ImageFont.truetype('/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf', 14) + + clock_refresh_interval = 5 # Refresh every 5 seconds + motd_refresh_interval = 120 # Refresh every minute + + time_image = Image.new('1', (epd.height, epd.width), 255) + draw = ImageDraw.Draw(time_image) + + previous_clock_time = '' + previous_date = '' + previous_status = '' + previous_ssid = '' + previous_footer_refresh = 0 + + while True: + # Get current time and date + current_time = time.strftime('%l:%M %p').lstrip().lower() + current_date = time.strftime('%a, %b %d, \'%y') + + # Get network status and SSID + status, ssid, ip_address = get_wifi_status() + + # If time, date, status, or SSID has changed, update + if current_time != previous_clock_time or current_date != previous_date or status != previous_status or ssid != previous_ssid or ip_address != previous_ip: + # Clear and redraw only if there's a change + if status != previous_status or ssid != previous_ssid or ip_address != previous_ip: + draw.rectangle((0, 0, 250, 40), fill=255) # Clear network status and SSID area + draw.text((0, 0), f"CONNECTION: {status}", font=font18, fill=0) + draw.text((0, 20), f"{ssid}, {ip_address}", font=font18, fill=0) + epd.displayPartial(epd.getbuffer(time_image.rotate(180))) # Partial refresh for status and SSID + + # Update the time and date with partial refresh + if current_time != previous_clock_time or current_date != previous_date: + draw.rectangle((0, 40, 250, 80), fill=255) # Clear time and date area + draw.text((0, 40), current_time, font=font18, fill=0) + draw.text((0, 60), current_date, font=font18, fill=0) + epd.displayPartial(epd.getbuffer(time_image.rotate(180))) # Partial refresh for time and date + + # Only refresh footer every minute + if time.time() - previous_footer_refresh >= motd_refresh_interval: + draw.rectangle((0, 90, 250, 122), fill=255) # Clear footer area + draw.text((0, 100), "DO NOT UNPLUG | rintyuu.dev", font=font16, fill=0) + epd.displayPartial(epd.getbuffer(time_image.rotate(180))) # Partial refresh for footer + previous_footer_refresh = time.time() + + # Update previous values + previous_clock_time = current_time + previous_date = current_date + previous_status = status + previous_ssid = ssid + previous_ip = ip_address + + # Wait for the interval before refreshing + time.sleep(clock_refresh_interval) + + except IOError as e: + logging.info(e) + + except KeyboardInterrupt: + logging.info("ctrl + c:") + epd2in13_V3.epdconfig.module_exit() + exit() + +if __name__ == "__main__": + main() diff --git a/status/status5.py.save b/status/status5.py.save new file mode 100644 index 0000000..8e154e8 --- /dev/null +++ b/status/status5.py.save @@ -0,0 +1,107 @@ +import sys +import os +import subprocess +import logging +import epd2in13_V3 +import time +from PIL import Image, ImageDraw, ImageFont + +picdir = os.path.dirname(os.path.realpath(__file__)) +libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib') +if os.path.exists(libdir): + sys.path.append(libdir) + +logging.basicConfig(level=logging.DEBUG) + +def get_wifi_status(): + try: + # Get the SSID of the currently connected Wi-Fi network + result = subprocess.run(['iwgetid', '-r'], capture_output=True, text=True) + ssid = result.stdout.strip() + + ip_result = subprocess.run(['hostname', '-I'], capture_output=True, text=True) + ip_address = ip_result.stdout.strip().split()[0] if ip_result.stdout else "N/A" + + if ssid: + return "OK", ssid + else: + return "Disconnected", "N/A" + except Exception as e: + return "Error", str(e) + +def main(): + try: + logging.info("epd2in13_V3 datetime and network info") + + epd = epd2in13_V3.EPD() + logging.info("init and Clear") + epd.init() + epd.Clear(0xFF) + + # Load fonts + font18 = ImageFont.truetype('/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf', 18) + font16 = ImageFont.truetype('/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf', 14) + + clock_refresh_interval = 5 # Refresh every 5 seconds + motd_refresh_interval = 120 # Refresh every minute + + time_image = Image.new('1', (epd.height, epd.width), 255) + draw = ImageDraw.Draw(time_image) + + previous_clock_time = '' + previous_date = '' + previous_status = '' + previous_ssid = '' + previous_footer_refresh = 0 + + while True: + # Get current time and date + current_time = time.strftime('%l:%M %p').lstrip().lower() + current_date = time.strftime('%a, %b %d, \'%y') + + # Get network status and SSID + status, ssid, ip_address = get_wifi_status() + + + # If time, date, status, or SSID has changed, update + if current_time != previous_clock_time or current_date != previous_date or status != previous_status or ssid != previous_ssid: + # Clear and redraw only if there's a change + if status != previous_status or ssid != previous_ssid: + draw.rectangle((0, 0, 250, 40), fill=255) # Clear network status and SSID area + draw.text((0, 0), f"CONNECTION: {status}", font=font18, fill=0) + draw.text((0, 20), f"SSID: {ssid}", font=font18, fill=0) + epd.displayPartial(epd.getbuffer(time_image.rotate(180))) # Partial refresh for status and SSID + + # Update the time and date with partial refresh + if current_time != previous_clock_time or current_date != previous_date: + draw.rectangle((0, 40, 250, 80), fill=255) # Clear time and date area + draw.text((0, 40), current_time, font=font18, fill=0) + draw.text((0, 60), current_date, font=font18, fill=0) + epd.displayPartial(epd.getbuffer(time_image.rotate(180))) # Partial refresh for time and date + + # Only refresh footer every minute + if time.time() - previous_footer_refresh >= motd_refresh_interval: + draw.rectangle((0, 90, 250, 122), fill=255) # Clear footer area + draw.text((0, 100), "DO NOT UNPLUG | rintyuu.dev", font=font16, fill=0) + epd.displayPartial(epd.getbuffer(time_image.rotate(180))) # Partial refresh for footer + previous_footer_refresh = time.time() + + # Update previous values + previous_clock_time = current_time + previous_date = current_date + previous_status = status + previous_ssid = ssid + + # Wait for the interval before refreshing + time.sleep(clock_refresh_interval) + + except IOError as e: + logging.info(e) + + except KeyboardInterrupt: + logging.info("ctrl + c:") + epd2in13_V3.epdconfig.module_exit() + exit() + +if __name__ == "__main__": + main()