Files
MacroPadOS/macropad_os/default_apps/common/light_patterns.py
T
2022-05-07 19:11:52 -04:00

21 lines
557 B
Python

arrows_with_enter = [
[(0, 0, 0), (0, 0, 0), (0, 0, 0)],
[(0, 0, 0), (0, 0, 100), (0, 0, 0)],
[(0, 0, 100), (100, 0, 0), (0, 0, 100)],
[(0, 0, 0), (0, 0, 100), (0, 0, 0)]
]
up_down_enter = [
[(0, 0, 0), (0, 0, 0), (0, 0, 0)],
[(0, 0, 0), (0, 0, 100), (0, 0, 0)],
[(0, 0, 0), (100, 0, 0), (0, 0, 0)],
[(0, 0, 0), (0, 0, 100), (0, 0, 0)]
]
arrows_yes_no = [
[(0, 0, 0), (0, 0, 0), (0, 0, 0)],
[(0, 0, 0), (0, 0, 100), (0, 0, 0)],
[(0, 0, 0), (100, 0, 0), (0, 0, 0)],
[(0, 100, 0), (0, 0, 100), (100, 0, 0)]
]