aboutsummaryrefslogtreecommitdiffstats
path: root/System_Python/test_Motor.py
diff options
context:
space:
mode:
Diffstat (limited to 'System_Python/test_Motor.py')
-rw-r--r--System_Python/test_Motor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/System_Python/test_Motor.py b/System_Python/test_Motor.py
index 600f209..99db520 100644
--- a/System_Python/test_Motor.py
+++ b/System_Python/test_Motor.py
@@ -11,7 +11,7 @@ m = Motor(speed_pin, forward_pin, reverse_pin)
dir = 'ascending'
speed = 0.0
while 1:
- m.Move(speed)
+ m.move(speed)
if speed >= 100.0:
dir = 'descending'
elif speed <= -100.0: