diff --git a/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Motor/Test-Motor-spin-for.IQ.Gen2.VEXcode.py b/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Motor/Test-Motor-spin-for.IQ.Gen2.VEXcode.py deleted file mode 100644 index 6c9d51a..0000000 --- a/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Motor/Test-Motor-spin-for.IQ.Gen2.VEXcode.py +++ /dev/null @@ -1,28 +0,0 @@ -# drive.google.com/open?id=12v36_xyEdSuUzU760v6wBcyaeZpxgLcC - - -from vex import ( - Motor, - Ports, - FORWARD, DEGREES, -) - - -motor = Motor(Ports.PORT12) - - -# motor.spin_for(DIRECTION=FORWARD, AMOUNT=360, UNITS=DEGREES) -# compiles, DOES NOT RUN -# motor.spin_for(direction=FORWARD, angle=360, units=DEGREES, wait=True) -# compiles, DOES NOT RUN -# motor.spin_for(FORWARD, angle=360, units=DEGREES, wait=True) -# compiles, DOES NOT RUN -# motor.spin_for(FORWARD, amount=360, units=DEGREES, wait=True) -# compiles, DOES NOT RUN -motor.spin_for(FORWARD, 360, units=DEGREES, wait=True) # compiles & run -motor.spin_for(FORWARD, 360, DEGREES, wait=True) # compiles & run -motor.spin_for(FORWARD, 360, DEGREES, True) # compiles & run -motor.spin_for(FORWARD, 360, DEGREES) # compiles & run -motor.spin_for(FORWARD, 360) # compiles & run -# motor.spin_for(FORWARD) # compiles, DOES NOT RUN -# motor.spin_for() # compiles, DOES NOT RUN diff --git a/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Motor/Test-Motor-spin.IQ.Gen2.VEXcode.py b/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Motor/Test-Motor-spin.IQ.Gen2.VEXcode.py deleted file mode 100644 index 1fb3a76..0000000 --- a/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Motor/Test-Motor-spin.IQ.Gen2.VEXcode.py +++ /dev/null @@ -1,22 +0,0 @@ -# drive.google.com/open?id=12uLmY55we4EHjPy3V3EV6wxGEhqYpG8I - - -from vex import ( - Motor, - Ports, - FORWARD, SECONDS, - wait, -) - - -motor = Motor(Ports.PORT12) - - -# motor.spin(DIRECTION=FORWARD) # compiles, DOES NOT RUN -motor.spin(direction=FORWARD) # compiles & run - -wait(1, SECONDS) -motor.stop() -wait(1, SECONDS) - -# motor.spin() # compiles, DOES NOT RUN