mirror of
https://github.com/brendanhaines/RasPi.git
synced 2025-04-11 19:24:51 -06:00
changes motorTest slider ranges
This commit is contained in:
parent
7884eec118
commit
aa779639ad
@ -262,23 +262,23 @@ class GroundStation implements ActionListener, ChangeListener, Runnable {
|
||||
motorTestValuesPanel = new JPanel();
|
||||
motorTestValuesPanel.setLayout( new FlowLayout() );
|
||||
|
||||
motor0Slider = new JSlider( 150, 600, 150 );
|
||||
motor0Slider = new JSlider( 200, 600, 200 );
|
||||
motor0Slider.setOrientation( JSlider.VERTICAL );
|
||||
motor0Slider.addChangeListener( this );
|
||||
|
||||
motor1Slider = new JSlider( 150, 600, 150 );
|
||||
motor1Slider = new JSlider( 200, 600, 200 );
|
||||
motor1Slider.setOrientation( JSlider.VERTICAL );
|
||||
motor1Slider.addChangeListener( this );
|
||||
|
||||
motor2Slider = new JSlider( 150, 600, 150 );
|
||||
motor2Slider = new JSlider( 200, 600, 200 );
|
||||
motor2Slider.setOrientation( JSlider.VERTICAL );
|
||||
motor2Slider.addChangeListener( this );
|
||||
|
||||
motor3Slider = new JSlider( 150, 600, 150 );
|
||||
motor3Slider = new JSlider( 200, 600, 200 );
|
||||
motor3Slider.setOrientation( JSlider.VERTICAL );
|
||||
motor3Slider.addChangeListener( this );
|
||||
|
||||
motorMasterSlider = new JSlider( 150, 600, 150 );
|
||||
motorMasterSlider = new JSlider( 200, 600, 200 );
|
||||
motorMasterSlider.setOrientation( JSlider.VERTICAL );
|
||||
motorMasterSlider.addChangeListener( this );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user