58 lines
1.3 KiB
Markdown
58 lines
1.3 KiB
Markdown
# Sensors
|
|
|
|
# Color
|
|
|
|
```cards
|
|
sensors.color1.onColorDetected(ColorSensorColor.Blue, function () {})
|
|
sensors.color1.onLightChanged(LightIntensityMode.Reflected, LightCondition.Dark, function () {})
|
|
sensors.color1.pauseForLight(LightIntensityMode.Reflected, LightCondition.Dark)
|
|
sensors.color1.pauseForColor(ColorSensorColor.Blue)
|
|
sensors.color1.color();
|
|
sensors.color1.light(LightIntensityMode.Ambient)
|
|
sensors.color(ColorSensorColor.Blue)
|
|
```
|
|
|
|
## Touch
|
|
|
|
```cards
|
|
sensors.touch1.onEvent(ButtonEvent.Pressed, function () {})
|
|
sensors.touch1.pauseUntil(ButtonEvent.Pressed)
|
|
sensors.touch1.wasPressed()
|
|
sensors.touch1.isPressed()
|
|
```
|
|
|
|
## Gyro
|
|
|
|
```cards
|
|
sensors.gyro1.angle();
|
|
sensors.gyro1.rate();
|
|
sensors.gyro1.reset();
|
|
```
|
|
|
|
## Ultrasonic
|
|
|
|
```cards
|
|
sensors.ultrasonic4.onEvent(UltrasonicSensorEvent.ObjectDetected, function () {});
|
|
sensors.ultrasonic1.distance();
|
|
sensors.ultrasonic1.pauseUntil(UltrasonicSensorEvent.ObjectDetected);
|
|
```
|
|
|
|
## Infrared
|
|
|
|
```cards
|
|
sensors.infrared1.onEvent(null, function () {});
|
|
sensors.infrared1.pauseUntil(null);
|
|
sensors.infrared1.proximity();
|
|
|
|
```
|
|
|
|
## Infrared beacon button
|
|
|
|
```cards
|
|
sensors.remoteButtonCenter.onEvent(ButtonEvent.Pressed, function () {})
|
|
sensors.remoteButtonCenter.pauseUntil(ButtonEvent.Pressed);
|
|
sensors.remoteButtonCenter.isPressed()
|
|
sensors.remoteButtonCenter.wasPressed()
|
|
sensors.infrared1.setRemoteChannel(null)
|
|
```
|