pxt-ev3/docs/maker/movement-detector.md

9 lines
269 B
Markdown
Raw Normal View History

2018-04-11 18:31:53 +02:00
# Movement Detector
2017-10-27 08:58:34 +02:00
This program will activate an alarm when an object moves in front of the Ultrasonic Sensor.
```blocks
2018-01-19 01:43:16 +01:00
sensors.ultrasonic4.onEvent(UltrasonicSensorEvent.ObjectNear, function () {
music.playSoundEffectUntilDone(sounds.informationActivate)
2017-10-27 08:58:34 +02:00
})
```