From 33efdb1bf413cf180c9a87b4e386d4d41364e467 Mon Sep 17 00:00:00 2001 From: Marcus Ferl Date: Thu, 17 Feb 2022 14:44:09 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=80=9Econfig.py=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.py b/config.py index 666e93b..e0c72cb 100644 --- a/config.py +++ b/config.py @@ -1,5 +1,10 @@ host = 'Device Ip' # ur device ip, where u upload the matrix.ino + + +# Config u Message True will show, false will diable garbage = 'true' # set true if u have a formated Json file +events = 'true' +holidays = 'true' From e3223f3084d612c9058fdb65b80172f039250bc1 Mon Sep 17 00:00:00 2001 From: Marcus Ferl Date: Thu, 17 Feb 2022 14:44:35 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=E2=80=9Eeventboard.py=E2=80=9C=20=C3=A4nde?= =?UTF-8?q?rn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eventboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventboard.py b/eventboard.py index 368c4cb..bae5d87 100644 --- a/eventboard.py +++ b/eventboard.py @@ -41,7 +41,7 @@ def create_Message(): # Send Message to the Device def matrixRequest(): - requests.get('http://' + config.host + config.get_request + create_Message()) + requests.get('http://' + config.host + config.get_request + str(create_Message())) matrixRequest()