From 1660b75af7b148fbb5013671de96d94f669d4362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Fri, 12 Aug 2022 02:17:50 +0200 Subject: [PATCH] added ascii decode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- pc-client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pc-client/main.py b/pc-client/main.py index 345f7fb..a71290d 100644 --- a/pc-client/main.py +++ b/pc-client/main.py @@ -15,4 +15,4 @@ host = serial.Serial('COM3', 9600) while True: output = host.readline() - print(output) \ No newline at end of file + print(output.decode("ASCII")) \ No newline at end of file