Changes between Version 1 and Version 2 of ControlSystems/SoftwareTeam/Training/GettingStarted/Cameras


Ignore:
Timestamp:
Nov 12, 2019, 7:08:15 PM (6 years ago)
Author:
Eileen Wang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/Training/GettingStarted/Cameras

    v1 v2  
    1 Often in FRC competitions, cameras are crucial for
     1
     2Cameras and Shuffleboard
     3
     4Often in FRC competitions, cameras are crucial for all sections of the games: autonomous and tele-operated.
     5
     6Create a new FRC project.
     7
     8import edu.wpi.first.cameraserver.CameraServer;
     9
     10Inside robotInit(), configure the camera with:
     11
     12CameraServer.getInstance().startAutomaticCapture();
     13
     14Now read about Shuffleboard:
     15https://wpilib.screenstepslive.com/s/currentCS/m/shuffleboard/l/814689-tour-of-shuffleboard
     16
     17Smartdashboard and shufflebaord can be used interchangeably, however,shuffleboard is far more user friendly and visually appealing.
     18
     19To display the camera:
     20https://wpilib.screenstepslive.com/s/currentCS/m/shuffleboard/l/831042-displaying-camera-streams
     21
     22
     23