Might as well highjack this instead of making a new thread for a tiny question and its related to SmartDashboard.
If I have a display() method that just puts values on the Dashboard, ex:
Code:
public void display(){
SmartDashboard.putNumber("FrontLeft PWM:", Robot.eboard.frontLeftSlot);
SmartDashboard.putNumber("BackLeft PWM:", Robot.eboard.backLeftSlot);
SmartDashboard.putNumber("FrontRight PWM:", Robot.eboard.frontRightSlot);
SmartDashboard.putNumber("BackRight PWM:", Robot.eboard.backLeftSlot);
}
Do I need to constantly call that method throughout teleopPeriodic()? Or do I only need to call it once during teleopInit()? In other words, do I have to update Dashboard manually, or will it update automatically as time goes on?
ps i understand the pwm slots sure well aren't going to change its just an example of a display method that is only temporary...