Quote:
Originally Posted by virtuald
You might try removing the 'except:' to see if an error gets thrown. It may be instructive and explain what the problem is.
Or better yet:
Code:
try:
...
except Exception:
self.logger.exception("Could not enable camera")
self.camera = None
|
Ah yes! Would that statement show up on the Driver Station then? Or would it be a "py robot.py deploy --nc" thing? Thanks!