#!/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)