MOAR TRANSLATIONS
This commit is contained in:
0
9 - Robot Program Structure/README.md
Normal file
0
9 - Robot Program Structure/README.md
Normal file
20
9 - Robot Program Structure/robot.py
Normal file
20
9 - Robot Program Structure/robot.py
Normal file
@@ -0,0 +1,20 @@
|
||||
import wpilib
|
||||
|
||||
class MyRobot(wpilib.TimedRobot):
|
||||
def robotInit(self):
|
||||
pass
|
||||
|
||||
def autonomousInit(self):
|
||||
pass
|
||||
|
||||
def autonomousPeriodic(self):
|
||||
pass
|
||||
|
||||
def teleopInit(self):
|
||||
pass
|
||||
|
||||
def teleopPeriodic(self):
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
wpilib.run(MyRobot)
|
||||
Reference in New Issue
Block a user