Quote:
Originally Posted by Rodney
I re-imaged a laptop to use as our team's new driver station. I updated the driver station software with the 2012 updates and it doesn't seem to want to display an image.
Additionally, normally when a dashboard isn't connected to a camera, you get a white image where the camera usually is, but instead I get a black image which means I must be connected to the camera.
I have connected to the camera through an internet browser and I have gotten an image. Also, I have connected the same camera to another personal laptop with driver station, and it works just fine.
I have done a bit of searching around on the forums and have found nothing that works...
|
I think we had this problem for a moment too, be sure you do the following to setup (this is Java code because that is what we are using, the api should correspond to something like it in Labview and C++ though):
Code:
camera = AxisCamera.getInstance();
camera.writeResolution(AxisCamera.ResolutionT.k320x240);
camera.writeBrightness(50); //or whatever you want if 50 is too dark/bright
I also may have seen somewhere you need to update the DriverStationLCD manually at least in Java. We were doing this already for some feedback for our drivers but it can't hurt if it still isn't working.