From 92774919c80033d20826a091a047dfbcc8f799af Mon Sep 17 00:00:00 2001 From: Rahix <rahix@rahix.de> Date: Mon, 12 Aug 2019 18:33:36 +0200 Subject: [PATCH] fix(leds): Add back missing LED IDs Signed-off-by: Rahix <rahix@rahix.de> --- pycardium/modules/py/leds.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pycardium/modules/py/leds.py b/pycardium/modules/py/leds.py index 640216995..86bbbcf73 100644 --- a/pycardium/modules/py/leds.py +++ b/pycardium/modules/py/leds.py @@ -1,6 +1,15 @@ import sys_leds import math +BOTTOM_RIGHT = 11 +""" ID of the LED in the bottom right corner. """ +BOTTOM_LEFT = 12 +""" ID of the LED in the bottom left corner. """ +TOP_RIGHT = 13 +""" ID of the LED in the top right corner. """ +TOP_LEFT = 14 +""" ID of the LED in the top left corner. """ + def update(): """ -- GitLab