微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

edu.wpi.first.wpilibj.SensorBase的实例源码

项目:FRC2015    文件WheelSystem.java   
@Override
public void destroy() {
    drivetrain.free();
    if(sidewaysMotor instanceof SensorBase){
        SensorBase motor = (SensorBase) sidewaysMotor;
        motor.free();
    }
}
项目:aerbot-champs    文件MultiMotor.java   
public void free() {
    for (int i = 0; i < motors.length; i++) {
        if (motors[i] instanceof SensorBase) {
            SensorBase motor = (SensorBase) motors[i];
            motor.free();
        }
    }
}
项目:aerbot-champs    文件ShooterSystem.java   
public void destroy() {
    if(speedController instanceof SensorBase){
        SensorBase motor = (SensorBase) speedController;
        motor.free();
    }
    solenoid.free();
}
项目:aerbot-champs    文件IntakeSystem.java   
public void destroy() {
    if(motorController instanceof SensorBase){
        SensorBase motor = (SensorBase) motorController;
        motor.free();
    }
    intakeLift.free();
    intakeLift2.free();
}
项目:Lib2585    文件MultiMotor.java   
@Override
public void free() {
    for (int i = 0; i < motors.length; i++) {
        if (motors[i] instanceof SensorBase) {
            SensorBase motor = (SensorBase) motors[i];
            motor.free();
        }
    }
}
项目:FlashLib    文件FRCPWM.java   
@Override
public double getFrequency() {
    return (SensorBase.kSystemClockTicksPerMicrosecond * 1e3) / dioJNI.getLoopTiming();
}
项目:blanket    文件ToggleInputEvent.java   
public ToggleInputEvent(final SensorBase sensor,final boolean toggle) {
    super(sensor);
    this.toggle = toggle;
}
项目:blanket    文件InputEvent.java   
public InputEvent(final SensorBase source) {
    this.source = source;
}
项目:blanket    文件NumberInputEvent.java   
public NumberInputEvent(final SensorBase sensor,final double number) {
    super(sensor);
    this.number = number;
}
项目:blanket    文件InputEvent.java   
/**
 * Returns the sensor giving an input in this event.
 *
 * @return The sensor giving an input in this event.
 */
public final SensorBase getSource() {
    return source;
}
项目:Team3310FRC2014    文件SPIDevice.java   
/**
 * Initialize SPI bus<br>
 * Only call this method once in the program
 *
 * @param clkChannel    The channel of the digital output for the clock signal.
 * @param mosiChannel   The channel of the digital output for the written data to the slave
 * (master-out slave-in).
 * @param misoChannel   The channel of the digital input for the input data from the slave
 * (master-in slave-out).
 */
public static void initBus(final int clkChannel,final int mosiChannel,final int misoChannel) {
    initBus(SensorBase.getDefaultDigitalModule(),clkChannel,mosiChannel,misoChannel);
}
项目:2013-robot    文件SPIDevice.java   
/**
 * Initialize SPI bus<br>
 * Only call this method once in the program
 *
 * @param clkChannel    The channel of the digital output for the clock signal.
 * @param mosiChannel   The channel of the digital output for the written data to the slave
 * (master-out slave-in).
 * @param misoChannel   The channel of the digital input for the input data from the slave
 * (master-in slave-out).
 */
public static void initBus(final int clkChannel,misoChannel);
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。