From 7e7310b1767229712e031b0e67fcb305ad94dde6 Mon Sep 17 00:00:00 2001 From: Cameron Fleming Date: Sat, 4 Jan 2025 22:27:10 +0000 Subject: [PATCH] fix: wakeDisplay() on start to fix warm start issue If the application had turned off the display before exiting, it wouldn't be brought on when the application restarted without a device reboot. --- display.go | 1 + 1 file changed, 1 insertion(+) diff --git a/display.go b/display.go index 86245f5..fc75849 100644 --- a/display.go +++ b/display.go @@ -205,6 +205,7 @@ func init() { updateStaticContents() displayInited = true fmt.Println("display inited") + wakeDisplay() requestDisplayUpdate() }()