pxt-ev3/docs/maker/movement-detector.md
2018-04-11 10:31:53 -06:00

9 lines
269 B
Markdown

# Movement Detector
This program will activate an alarm when an object moves in front of the Ultrasonic Sensor.
```blocks
sensors.ultrasonic4.onEvent(UltrasonicSensorEvent.ObjectNear, function () {
music.playSoundEffectUntilDone(sounds.informationActivate)
})
```