| 1 | Shuffleboard can do far more than displaying camera feed. Review it here: |
| 2 | https://wpilib.screenstepslive.com/s/currentCS/m/shuffleboard/l/814689-tour-of-shuffleboard |
| 3 | |
| 4 | 1. Create a new project in VSCode |
| 5 | 2. Create the basic encoder code in: |
| 6 | http://wiki.team2537.com/wiki/ControlSystems/SoftwareTeam/Training/GettingStarted/Encoders |
| 7 | 3. Add the following to teleopPeriodic(): |
| 8 | {{{ |
| 9 | SmartDashboard.putNumber("Encoder value", m_Left.getSelectedSensorPosition()); |
| 10 | }}} |
| 11 | 4. Connect to a robot and deploy your code |
| 12 | 5. Now open Shuffleboard to view your entered data. |
| 13 | 6. Feel free to explore the design using this: |
| 14 | https://wpilib.screenstepslive.com/s/currentCS/m/shuffleboard/l/821652-displaying-data-from-your-robot |