Remove redundant code from OLED script (#547)

This commit is contained in:
Daniel Markstedt
2021-12-19 20:25:23 -08:00
committed by GitHub
parent d8828da690
commit d09df31d67

View File

@@ -169,7 +169,6 @@ def start_splash():
"""
Displays a splash screen for the startup sequence
"""
DRAW.bitmap((0, 0), SPLASH_START, fill=0)
OLED.image(SPLASH_START)
OLED.show()
sleep(4)
@@ -178,7 +177,6 @@ def stop_splash():
"""
Displays a splash screen for the shutdown sequence
"""
DRAW.bitmap((0, 0), SPLASH_STOP, fill=0)
OLED.image(SPLASH_STOP)
OLED.show()