From 3d55fefa1a8c741994b85888f6351ad3adcdee0b Mon Sep 17 00:00:00 2001 From: shrkey Date: Tue, 13 Sep 2016 22:47:41 +0100 Subject: [PATCH] more indents --- darkwater_640/darkwater_640.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/darkwater_640/darkwater_640.py b/darkwater_640/darkwater_640.py index 57532a5..26d1407 100644 --- a/darkwater_640/darkwater_640.py +++ b/darkwater_640/darkwater_640.py @@ -147,11 +147,11 @@ class dw_Stepper: if (style == dw_Controller.MICROSTEP): if (self.currentstep >= 0) and (self.currentstep < self.MICROSTEPS): coils = [1, 1, 0, 0] - elif (self.currentstep >= self.MICROSTEPS) and (self.currentstep < self.MICROSTEPS*2): + elif (self.currentstep >= self.MICROSTEPS) and (self.currentstep < self.MICROSTEPS*2): coils = [0, 1, 1, 0] - elif (self.currentstep >= self.MICROSTEPS*2) and (self.currentstep < self.MICROSTEPS*3): + elif (self.currentstep >= self.MICROSTEPS*2) and (self.currentstep < self.MICROSTEPS*3): coils = [0, 0, 1, 1] - elif (self.currentstep >= self.MICROSTEPS*3) and (self.currentstep < self.MICROSTEPS*4): + elif (self.currentstep >= self.MICROSTEPS*3) and (self.currentstep < self.MICROSTEPS*4): coils = [1, 0, 0, 1] else: step2coils = [ [1, 0, 0, 0],