From 65d2fbd2de4ba9f885927e328d9659de5ec801c3 Mon Sep 17 00:00:00 2001 From: Bernd Reuther Date: Sun, 17 Oct 2021 13:54:06 +0200 Subject: [PATCH] debug m3 --- src/schrittmotor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/schrittmotor.py b/src/schrittmotor.py index b7c0357..286491f 100644 --- a/src/schrittmotor.py +++ b/src/schrittmotor.py @@ -143,6 +143,7 @@ class motor(): def gehe_zu(self, position): if self.aktiv == 0: temp_schritte = int(position) - self.pos + print('Kamera Motor ' + self.name + ' gehe ' + str(temp_schritte)) if temp_schritte > 0: self.__vorwaerts(temp_schritte)