本文整理汇总了Java中com.qualcomm.robotcore.hardware.OpticalDistanceSensor类的典型用法代码示例。如果您正苦于以下问题:Java OpticalDistanceSensor类的具体用法?Java OpticalDistanceSensor怎么用?Java OpticalDistanceSensor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
OpticalDistanceSensor类属于com.qualcomm.robotcore.hardware包,在下文中一共展示了OpticalDistanceSensor类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: runOpMode
import com.qualcomm.robotcore.hardware.OpticalDistanceSensor; //导入依赖的package包/类
@Override
public void runOpMode() {
// get a reference to our Light Sensor object.
odsSensor = hardwareMap.get(OpticalDistanceSensor.class, "sensor_ods");
// wait for the start button to be pressed.
waitForStart();
// while the op mode is active, loop and read the light levels.
// Note we use opModeIsActive() as our loop condition because it is an interruptible method.
while (opModeIsActive()) {
// send the info back to driver station using telemetry function.
telemetry.addData("Raw", odsSensor.getRawLightDetected());
telemetry.addData("Normal", odsSensor.getLightDetected());
telemetry.update();
}
}
示例2: createDeviceMaps
import com.qualcomm.robotcore.hardware.OpticalDistanceSensor; //导入依赖的package包/类
/**
* Move the propriety {@link HardwareMap.DeviceMapping} to our {@link DeviceMap} for our
* internal use
*/
private void createDeviceMaps() {
fullMap.checkedPut(DcMotorController.class, new DeviceMap<>(basicMap.dcMotorController));
fullMap.checkedPut(DcMotor.class, new DeviceMap<>(basicMap.dcMotor));
fullMap.checkedPut(ServoController.class, new DeviceMap<>(basicMap.servoController));
fullMap.checkedPut(Servo.class, new DeviceMap<>(basicMap.servo));
fullMap.checkedPut(LegacyModule.class, new DeviceMap<>(basicMap.legacyModule));
fullMap.checkedPut(TouchSensorMultiplexer.class, new DeviceMap<>(basicMap.touchSensorMultiplexer));
fullMap.checkedPut(DeviceInterfaceModule.class, new DeviceMap<>(basicMap.deviceInterfaceModule));
fullMap.checkedPut(AnalogInput.class, new DeviceMap<>(basicMap.analogInput));
fullMap.checkedPut(DigitalChannel.class, new DeviceMap<>(basicMap.digitalChannel));
fullMap.checkedPut(OpticalDistanceSensor.class, new DeviceMap<>(basicMap.opticalDistanceSensor));
fullMap.checkedPut(TouchSensor.class, new DeviceMap<>(basicMap.touchSensor));
fullMap.checkedPut(PWMOutput.class, new DeviceMap<>(basicMap.pwmOutput));
fullMap.checkedPut(I2cDevice.class, new DeviceMap<>(basicMap.i2cDevice));
fullMap.checkedPut(AnalogOutput.class, new DeviceMap<>(basicMap.analogOutput));
fullMap.checkedPut(ColorSensor.class, new DeviceMap<>(basicMap.colorSensor));
fullMap.checkedPut(LED.class, new DeviceMap<>(basicMap.led));
fullMap.checkedPut(AccelerationSensor.class, new DeviceMap<>(basicMap.accelerationSensor));
fullMap.checkedPut(CompassSensor.class, new DeviceMap<>(basicMap.compassSensor));
fullMap.checkedPut(GyroSensor.class, new DeviceMap<>(basicMap.gyroSensor));
fullMap.checkedPut(IrSeekerSensor.class, new DeviceMap<>(basicMap.irSeekerSensor));
fullMap.checkedPut(LightSensor.class, new DeviceMap<>(basicMap.lightSensor));
fullMap.checkedPut(UltrasonicSensor.class, new DeviceMap<>(basicMap.ultrasonicSensor));
fullMap.checkedPut(VoltageSensor.class, new DeviceMap<>(basicMap.voltageSensor));
LinkedHashMultimap<DcMotorController, DcMotor> multimap = LinkedHashMultimap.create();
for (DcMotor motor : dcMotors()) {
multimap.put(motor.getController(), motor);
}
}
示例3: mapOpticalDistanceSensor
import com.qualcomm.robotcore.hardware.OpticalDistanceSensor; //导入依赖的package包/类
private void mapOpticalDistanceSensor(HardwareMap map, DeviceManager deviceMgr, DeviceInterfaceModule deviceInterfaceModule, DeviceConfiguration devConf) {
if (!devConf.isEnabled()) return;
OpticalDistanceSensor opticalDistanceSensor = deviceMgr.createAnalogOpticalDistanceSensor(deviceInterfaceModule, devConf.getPort());
map.opticalDistanceSensor.put(devConf.getName(), opticalDistanceSensor);
}
示例4: OpticalDistance
import com.qualcomm.robotcore.hardware.OpticalDistanceSensor; //导入依赖的package包/类
public OpticalDistance(OpticalDistanceSensor sensor) {
this.o = sensor;
}
示例5: update
import com.qualcomm.robotcore.hardware.OpticalDistanceSensor; //导入依赖的package包/类
public void update(OpticalDistanceSensor sensor) {
this.o = sensor;
}
示例6: opticalDistanceSensors
import com.qualcomm.robotcore.hardware.OpticalDistanceSensor; //导入依赖的package包/类
/**
* Returns a {@link DeviceMap<OpticalDistanceSensor>} for use to access Optical Distance Sensor
* hardware
*
* @return a DeviceMap to use for access to representations of Optical Distance Sensors
* @see DeviceMap
* @see OpticalDistanceSensor
*/
public DeviceMap<OpticalDistanceSensor> opticalDistanceSensors() {
return fullMap.checkedGet(OpticalDistanceSensor.class);
}