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.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/System_Python/test_Motor.py b/System_Python/test_Motor.py
index f14af59..600f209 100644
--- a/System_Python/test_Motor.py
+++ b/System_Python/test_Motor.py
@@ -2,22 +2,22 @@ from motor import Motor
import time
# Decide which pins to hook up to on the Pi before running
-speed_pin = 15
-forward_pin = 16
-reverse_pin = 17
+speed_pin = 17
+forward_pin = 27
+reverse_pin = 22
m = Motor(speed_pin, forward_pin, reverse_pin)
dir = 'ascending'
speed = 0.0
while 1:
- m.Move(speed)
- if speed >= 100.0:
- dir = 'descending'
- elif speed <= -100.0:
- dir = 'ascending'
- if dir == 'ascending':
- speed = speed + 0.5
- else:
- speed = speed - 0.5
- time.sleep(0.1) \ No newline at end of file
+ m.Move(speed)
+ if speed >= 100.0:
+ dir = 'descending'
+ elif speed <= -100.0:
+ dir = 'ascending'
+ if dir == 'ascending':
+ speed = speed + 0.5
+ else:
+ speed = speed - 0.5
+ time.sleep(0.1) \ No newline at end of file