95 lines
3.1 KiB
Python
95 lines
3.1 KiB
Python
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()
|
|
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)
|
|
font14 = ImageFont.truetype('/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf', 14)
|
|
|
|
clock_refresh_interval = 4 # Refresh every minute
|
|
logging.info("Showing network info, time, date, and footer...")
|
|
time_image = Image.new('1', (epd.height, epd.width), 255)
|
|
draw = ImageDraw.Draw(time_image)
|
|
|
|
previous_clock_time = ''
|
|
previous_date = ''
|
|
previous_status = ''
|
|
previous_ssid = ''
|
|
|
|
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 = get_wifi_status()
|
|
|
|
if current_time != previous_clock_time or current_date != previous_date or status != previous_status or ssid != previous_ssid:
|
|
# Clear previous display
|
|
draw.rectangle((0, 0, 250, 122), fill=255)
|
|
|
|
# Draw network status and SSID
|
|
draw.text((0, 0), f"CONNECTION: {status}", font=font18, fill=0)
|
|
draw.text((0, 20), f"SSID: {ssid}", font=font18, fill=0)
|
|
|
|
# Draw the time and date
|
|
draw.text((0, 40), current_time, font=font18, fill=0)
|
|
draw.text((0, 60), current_date, font=font18, fill=0)
|
|
|
|
# Footer text
|
|
draw.text((0, 100), "DO NOT UNPLUG | rintyuu.dev", font=font14, fill=0)
|
|
|
|
# Rotate and display
|
|
rotated_image = time_image.rotate(180)
|
|
epd.displayPartial(epd.getbuffer(rotated_image))
|
|
|
|
# Update previous values
|
|
previous_clock_time = current_time
|
|
previous_date = current_date
|
|
previous_status = status
|
|
previous_ssid = ssid
|
|
|
|
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()
|