本文整理汇总了Java中com.ctre.CANTalon.enableReverseSoftLimit方法的典型用法代码示例。如果您正苦于以下问题:Java CANTalon.enableReverseSoftLimit方法的具体用法?Java CANTalon.enableReverseSoftLimit怎么用?Java CANTalon.enableReverseSoftLimit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.ctre.CANTalon
的用法示例。
在下文中一共展示了CANTalon.enableReverseSoftLimit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: config
import com.ctre.CANTalon; //导入方法依赖的package包/类
@Override
protected void config(CANTalon talon, boolean value) {
talon.enableReverseSoftLimit(value);
}
示例2: configure
import com.ctre.CANTalon; //导入方法依赖的package包/类
/**
* Configure a Talon with stored parameters.
*
* @param talon the Talon to registerWith
*/
public void configure(@NotNull CANTalon talon) {
talon.setSafetyEnabled(false);
talon.setProfile(0);
talon.setExpiration(MotorSafety.DEFAULT_SAFETY_EXPIRATION);
Encoder enc = encoder != null ? encoder : Encoder.DEFAULT;
enc.configure(talon);
talon.enableBrakeMode(brakeInNeutral != null ? brakeInNeutral : true);
talon.reverseOutput(outputReversed != null ? outputReversed : false);
if (velocityMeasurementPeriod != null) {
talon.SetVelocityMeasurementPeriod(velocityMeasurementPeriod);
} else {
talon.SetVelocityMeasurementPeriod(VelocityMeasurementPeriod.Period_100Ms);
}
if (velocityMeasurementWindow != null) {
talon.SetVelocityMeasurementWindow(velocityMeasurementWindow);
} else {
talon.SetVelocityMeasurementWindow(64);
}
LimitSwitch fls = forwardLimitSwitch != null ? forwardLimitSwitch : LimitSwitch.DEFAULT;
LimitSwitch rls = reverseLimitSwitch != null ? reverseLimitSwitch : LimitSwitch.DEFAULT;
talon.enableLimitSwitch(fls.isEnabled(), rls.isEnabled());
if (fls.isEnabled()) {
talon.ConfigFwdLimitSwitchNormallyOpen(fls.isNormallyOpen());
}
if (rls.isEnabled()) {
talon.ConfigRevLimitSwitchNormallyOpen(rls.isNormallyOpen());
}
SoftLimit sl = forwardSoftLimit != null ? forwardSoftLimit : SoftLimit.DEFAULT;
talon.enableForwardSoftLimit(sl.isEnabled());
if (sl.isEnabled()) {
talon.setForwardSoftLimit(sl.getPosition());
}
sl = reverseSoftLimit != null ? reverseSoftLimit : SoftLimit.DEFAULT;
talon.enableReverseSoftLimit(sl.isEnabled());
if (sl.isEnabled()) {
talon.setReverseSoftLimit(sl.getPosition());
}
if (currentLimit != null && currentLimit > 0) {
talon.setCurrentLimit(currentLimit);
talon.EnableCurrentLimit(true);
} else {
talon.EnableCurrentLimit(false);
}
talon.setVoltageRampRate(voltageRampRate != null ? voltageRampRate : 0);
addTalonId(talon.getDeviceID());
}