Skip to content

Commit

Permalink
remove wpilib.run
Browse files Browse the repository at this point in the history
  • Loading branch information
megarubber committed Jan 6, 2024
1 parent 86de60b commit cd7696b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions StateSpaceElevator/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,3 @@ def teleopPeriodic(self) -> None:
# duty cycle = voltage / battery voltage
nextVoltage = self.loop.U(0)
self.motor.setVoltage(nextVoltage)


if __name__ == "__main__":
wpilib.run(MyRobot)
4 changes: 0 additions & 4 deletions StateSpaceFlywheel/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,3 @@ def teleopPeriodic(self) -> None:
# duty cycle = voltage / battery voltage
nextVoltage = self.loop.U()
self.motor.setVoltage(nextVoltage)


if __name__ == "__main__":
wpilib.run(MyRobot)
4 changes: 0 additions & 4 deletions StateSpaceFlywheelSysId/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,3 @@ def teleopPeriodic(self) -> None:
# duty cycle = voltage / battery voltage
nextVoltage = self.loop.U()
self.motor.setVoltage(nextVoltage)


if __name__ == "__main__":
wpilib.run(MyRobot)

0 comments on commit cd7696b

Please sign in to comment.