13 lines
189 B
Python
13 lines
189 B
Python
from motor_passo.motor import Motor
|
|
|
|
|
|
def main():
|
|
motor = Motor([13, 19, 26])
|
|
motor.setup()
|
|
motor.set_speed(90)
|
|
motor.step(24 * 100)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|