Log in

View Full Version : pic: Test Board with New Control System and Talon SRXs


Joey1939
08-01-2015, 23:19
[cdm-description=photo]41117[/cdm-description]

Source Code Here (https://github.com/FIRST1939/TestBoard)

Gregor
08-01-2015, 23:21
Are the 4 bearing blocks in the corner the Plastic Clamping Bearing Blocks? (P/N 217-4155) (http://www.vexrobotics.com/catalog/product/gallery/id/26220/image/30201/)

If so, how have they held up? Have you had any issues with them?

sgosiaco
09-01-2015, 00:10
Could you possibly go into detail in how you got your usb camera feed working and what camera are you using? I'm having troubles getting a PS3 Eye camera working with a similar test bed setup.

GDB
09-01-2015, 13:46
Are the 4 bearing blocks in the corner the Plastic Clamping Bearing Blocks? (P/N 217-4155) (http://www.vexrobotics.com/catalog/product/gallery/id/26220/image/30201/)

If so, how have they held up? Have you had any issues with them?

To be honest, I am wondering the same thing because we aren't sure rather to use the plastic bearing blocks or the aluminum ones (even though we have the aluminum ones already).

Joey1939
09-01-2015, 17:46
Are the 4 bearing blocks in the corner the Plastic Clamping Bearing Blocks? (P/N 217-4155) (http://www.vexrobotics.com/catalog/product/gallery/id/26220/image/30201/)

If so, how have they held up? Have you had any issues with them?

I am not mechanical, but as far as I have seen they work just like the aluminum ones (The robot currently has 4 plastic and 2 aluminium) with no issues. My only recommendation is to make sure to put 2 bearings in each block. I wasn't given enough bearings when reassembling, so our wheels are angled with only 1 bearing in each block.

Joey1939
09-01-2015, 17:54
Could you possibly go into detail in how you got your usb camera feed working and what camera are you using? I'm having troubles getting a PS3 Eye camera working with a similar test bed setup.

Sure, first plug in the camera and open the roboRIO webdashboard (http://wpilib.screenstepslive.com/s/4485/m/24166/l/262266-roborio-webdashboard). You should see the camera listed with a name like "cam0". If you don't see your camera listed there, it probably isn't supported.

Then in your code you need to insert the following lines in the initialization of the Robot (Assuming you are using Java or C++):
CameraServer server = CameraServer.getInstance();
server.setQuality(50);
server.startAutomaticCapture("cam0");
Make sure to replace "cam0" with the name of the camera found in the first step.