chickenhouse/engine_test.py
2018-08-27 11:26:29 +02:00

17 lines
236 B
Python
Executable File

#!/usr/bin/python2
from engine import engine
from time import sleep
eng = engine(13, 19)
while True:
eng.stop()
print "engine stop"
sleep(3)
eng.run_up()
print "engine up"
sleep(3)
eng.run_down()
print "engine down"
sleep(3)