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