pxt-ev3/docs/maker/intruder-detector.md
2018-01-18 16:43:16 -08:00

269 B

Intruder Detector

This program will activate an alarm when an object moves in front of the Ultrasonic Sensor.

sensors.ultrasonic4.onEvent(UltrasonicSensorEvent.ObjectNear, function () {
    music.playSoundEffectUntilDone(sounds.informationActivate)
})