Package ca.teamdave.caruso.sensor

Examples of ca.teamdave.caruso.sensor.BooleanSensor


    private BooleanSensor armUpButton;
    private BooleanSensor armDownButton;
    private BooleanActuator armValve;

    public void robotInit(Machine machine) throws CarusoException {
        this.armUpButton = new BooleanSensor(machine.getSensor(SimpleFRCIO.ARM_UP_BUTTON));
        this.armDownButton = new BooleanSensor(machine.getSensor(SimpleFRCIO.ARM_DOWN_BUTTON));

        this.armValve = new BooleanActuator(machine.getActuator(SimpleFRCIO.ARM_VALVE));

    }
View Full Code Here

TOP

Related Classes of ca.teamdave.caruso.sensor.BooleanSensor

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.