View Single Post
  #2   Spotlight this post!  
Unread 31-01-2017, 20:43
Nick Donahue 40 Nick Donahue 40 is offline
Registered User
FRC #4028
 
Join Date: Jan 2017
Location: Cincinnati
Posts: 3
Nick Donahue 40 is an unknown quantity at this point
Re: Swap Camera Bandwidth Issues

I have discovered that there is an option to disable CvSinks, as shown here.
Code:
              cvSink1.setEnabled(false);
            		cvSink2.setEnabled(false);
            		cvSink3.setEnabled(true);
This would go in the while set of your code under each individual if statement.
Reply With Quote