Adafruit_Learning_System_Gu.../Macropad_Hotkeys/macros/zzz_blank.py
Victor Toni ed18ab7908 Add blank screen usable when idle
The MacroPad stays active including screen and lights even when the computer it is attached to, goes to sleep. 
This change provides a blank screen, sets all RGB lights to black and disables the bright background of the title bar when the title is empty (as on the blank screen).
2021-11-25 23:52:06 +01:00

28 lines
920 B
Python
Executable file

# MACROPAD Hotkeys: blank screen for idle
# Contributed by GitHub @vitoni
app = { # REQUIRED dict, must be named 'app'
'name' : '', # Application name
'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE
# 1st row ----------
(0x000000, '', []),
(0x000000, '', []),
(0x000000, '', []),
# 2nd row ----------
(0x000000, '', []),
(0x000000, '', []),
(0x000000, '', []),
# 3rd row ----------
(0x000000, '', []),
(0x000000, '', []),
(0x000000, '', []),
# 4th row ----------
(0x000000, '', []),
(0x000000, '', []),
(0x000000, '', []),
# Encoder button ---
(0x000000, '', [])
]
}