Small improvements

This commit is contained in:
BlueFox 2024-11-16 17:00:54 +01:00
parent 68a588de58
commit 92ebbd2ef8
Signed by: BlueFox
GPG Key ID: 327233DA85435270
3 changed files with 7 additions and 5 deletions

View File

@ -21,7 +21,9 @@ from utils import log
def run(lcd):
# Show off basic functionality of the lcd driver
log(2, "Running the lcd driver demo")
lcd.putstr("Driver demo".center(16))
lcd.clear()
lcd.putstr("Driver demo".center(16)+"running...".center(16))
sleep(1)
lcd.clear()
lcd.putstr("Lorem ipsum dolor sit amet")

View File

@ -20,8 +20,8 @@ btn_mapping = {"ok_btn": config.PIN_IN_BTN_1, "next_btn": config.PIN_IN_BTN_2}
# extra functions to access the garbage collector
def timer():
import programs.timer as t
def timers():
import programs.timers as t
t.run(config, btn_mapping, utils.log, lcdMenu)
del t
collect()
@ -47,7 +47,7 @@ def settings():
# create the main menu
main_menu = lcdMenu(config.LCD, btn_mapping, scroll_direction=True, cycle=True, hide_menu_name=False, name="PROGRAMS")
main_programs = [("Timer", timer),
main_programs = [("Timers", timers),
("Manual", manual),
("Demos", demos),
("Settings", settings)]