From a6c291722c9227723885f94ea08770ac63d11650 Mon Sep 17 00:00:00 2001 From: PeterDHabermehl Date: Thu, 4 Jan 2018 00:15:26 +0100 Subject: [PATCH] ftduino_direct update to v1.0.5 Signed-off-by: PeterDHabermehl --- board/fischertechnik/TXT/rootfs/opt/ftc/ftduino_direct.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 board/fischertechnik/TXT/rootfs/opt/ftc/ftduino_direct.py diff --git a/board/fischertechnik/TXT/rootfs/opt/ftc/ftduino_direct.py b/board/fischertechnik/TXT/rootfs/opt/ftc/ftduino_direct.py old mode 100644 new mode 100755 index 7107b32774..dbe1ce048f --- a/board/fischertechnik/TXT/rootfs/opt/ftc/ftduino_direct.py +++ b/board/fischertechnik/TXT/rootfs/opt/ftc/ftduino_direct.py @@ -1,4 +1,4 @@ -# v1.0.4 (c) 2017 Peter Habermehl +# v1.0.5 # # Kommandos fuer ftduino.comm : # @@ -100,9 +100,9 @@ def comm(self, command): if data: return data.decode("utf-8")[:-2] else: - return False + return "Fail" except: - return False + return "Fail" def close(self): self.ftduino.close()