From 0b9ab0b51ea0a3ec74b3d4b927e5c7a3e429b3ed Mon Sep 17 00:00:00 2001
From: genofire <geno+dev@fireorbit.de>
Date: Sat, 17 Aug 2019 15:32:11 +0000
Subject: [PATCH] fix(py): LEDs of background indext

---
 pycardium/modules/py/leds.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pycardium/modules/py/leds.py b/pycardium/modules/py/leds.py
index 86bbbcf7..2c9fd275 100644
--- a/pycardium/modules/py/leds.py
+++ b/pycardium/modules/py/leds.py
@@ -1,10 +1,10 @@
 import sys_leds
 import math
 
-BOTTOM_RIGHT = 11
-""" ID of the LED in the bottom right corner. """
-BOTTOM_LEFT = 12
+BOTTOM_LEFT = 11
 """ ID of the LED in the bottom left corner. """
+BOTTOM_RIGHT = 12
+""" ID of the LED in the bottom right corner. """
 TOP_RIGHT = 13
 """ ID of the LED in the top right corner. """
 TOP_LEFT = 14
-- 
GitLab