from motor_passo.motor import Motor def main(): motor = Motor([5, 6, 13]) motor.setup() motor.step(24 * 2) if __name__ == "__main__": main()