We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f9735 commit 2efb958Copy full SHA for 2efb958
esp32/modules/launcher.py
@@ -161,10 +161,7 @@ def init_power_management():
161
def start():
162
ugfx.input_init()
163
ugfx.set_lut(ugfx.LUT_FASTER)
164
- ugfx.clear(ugfx.BLACK)
165
- ugfx.flush()
166
ugfx.clear(ugfx.WHITE)
167
168
169
if badge.safe_mode():
170
still = "SAFE"
@@ -213,7 +210,8 @@ def start():
213
210
populate_category()
214
211
populate_options()
215
212
216
- ugfx.flush(ugfx.LUT_FULL)
+ # do a greyscale flush on start
+ ugfx.flush(ugfx.GREYSCALE)
217
218
start()
219
init_power_management()
0 commit comments