Displaying LiveWindow Values

Note

LiveWindow will automatically add your sensors for you. There is no need to do it manually.

LiveWindow values may also be displayed by writing the code yourself and adding it to your robot program. LiveWindow will display values grouped in subsystems. This is a convenient method of displaying whether they are actual command based program subsystems or just a grouping that you decide to use in your program.

Adding the Necessary Code to your Program

  1. First, get a reference (Java) or pointer (C++) to the LiveWindow object.

LiveWindow lw = LiveWindow.getInstance();
  1. Then for each sensor or actuator that is created, add it to the LiveWindow display by either calling AddActuator or AddSensor (addActuator or addSensor in Java). When the SmartDashboard is put into LiveWindow mode, it will display the sensors and actuators.

Ultrasonic ultrasonic = new Ultrasonic(1, 2);
lw.addSensor("Arm", "Ultrasonic", ultrasonic);

Jaguar elbow = new Jaguar(1);
lw.addActuator("Arm", "Elbow", elbow);

Victor wrist = new Victor(2);
lw.addActuator("Arm", "Wrist", wrist);

Viewing the Display in SmartDashboard

Modifying the components of a subsystem in SmartDashboard.

The sensors and actuators added to the LiveWindow will be displayed grouped by subsystem. The subsystem name is just an arbitrary grouping the helping to organize the display of the sensors. Actuators can be operated by operating the slider for the two motor controllers.