From f3dc98d884dc2a04951f93bae60b78ed64a8daf4 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Mon, 9 Nov 2020 12:19:37 +0100 Subject: [PATCH] Wrong color --- clock/api/led.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clock/api/led.py b/clock/api/led.py index 00697c9..690fa0c 100644 --- a/clock/api/led.py +++ b/clock/api/led.py @@ -94,7 +94,7 @@ class OutputHandler(): else: face2 = converter.time_converter(int(weather["low"]+weather["high"])) face2 = np.concatenate((face2[:8,...],2*face2[8:,...])) - face2_3d = self.matrix_add_depth(face2,[[100,100,10],[200,10,10]]) + face2_3d = self.matrix_add_depth(face2,[[10,10,200],[150,150,10]]) face = np.zeros((max(face1_3d.shape[0],face2_3d.shape[0]),face1_3d.shape[1]+face2_3d.shape[1],3))