Everything is deployed successfully, but the comm light on the roboRIO is solid red. The DS is reading comms, but no robot code.
#!/usr/bin/env python3
import wpilib
from wpilib.drive import DifferentialDrive
import ctre
class MyRobot(wpilib.TimedRobot):
def robotInit(self):
self.left = ctre.WPI_TalonSRX(0)
self.right = ctre.WPI_TalonSRX(1)
self.myRobot = DifferentialDrive(self.left, self.right)
self.stick = wpilib.Joystick(0)
def autonomousInit(self):
pass
def autonomousPeriodic(self):
pass
def teleopPeriodic(self):
self.myRobot.arcadeDrive(self.stick.getRawAxis(0), self.stick.getRawAxis(1))
def testPeriodic(self):
pass
if __name__ == "__main__":
wpilib.run(MyRobot)