From 51de3a3d9c46b8f0dc98023044167ef5a972c20d Mon Sep 17 00:00:00 2001 From: slush0 Date: Sat, 8 Oct 2016 13:02:02 +0200 Subject: [PATCH] Setting initial brightness to ui.BACKLIGHT_NORMAL --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 57c1a00b4a..f7dc0d49e3 100644 --- a/src/main.py +++ b/src/main.py @@ -14,7 +14,7 @@ management.boot() wallet.boot() # Change backlight to white for better visibility -ui.display.backlight(255) +ui.display.backlight(ui.BACKLIGHT_NORMAL) # Just a demo to show how to register USB ifaces msg.setup([(1, 0xF53C), (2, 0xF1D0)])