pxt-ev3/docs/maker/intruder-detector.md
2017-10-26 23:58:34 -07:00

11 lines
277 B
Markdown

# Intruder Detector
This program will activate an alarm when an object moves in front of the Ultrasonic Sensor.
TODO support for event when value changes
```blocks
input.ultrasonic4.onObjectNear(function () {
music.playSoundUntilDone(music.sounds(Sounds.PowerUp))
})
```