Package eu.hansolo.steelseries.extras

Examples of eu.hansolo.steelseries.extras.Altimeter


    instruments.setLayout(new BoxLayout(instruments, BoxLayout.X_AXIS));
    compass = new AirCompass();
    compass.setSize(SIZE);
    instruments.add(compass);
    // Altimeter
    altimeter = new Altimeter();
    altimeter.setSize(SIZE);
    altimeter.setUnitString("mt");
    altimeter.setLcdUnitString("mt");
    altimeter.setLcdDecimals(2);
    instruments.add(altimeter);
View Full Code Here

TOP

Related Classes of eu.hansolo.steelseries.extras.Altimeter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.