Hi! We are still trying to get our USB Camera working with this __init__ code:
Code:
try:
self.camera = wpilib.USBCamera()
self.camera.startCapture()
self.camServ = wpilib.CameraServer()
self.camServ.startAutomaticCapture(self.camera)
except:
self.camera = None
The camera shows up in the RoboRIO web interface but we can't seem to get it to show up in the SmartDashboard or the Driver Station. Maybe I missed a step in setting up the camera since this is the first time I have set a USB Camera up with the RIO. We are using RobotPy and Pyfrc. Any help would be greatly appreciated!