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

9 lines
248 B
Markdown

# Security Gadget
This program will activate an alarm when an object is lifted from the Touch Sensor.
```blocks
sensors.touch1.onEvent(TouchSensorEvent.Released, function () {
music.playSoundEffectUntilDone(sounds.informationActivate);
})
```