pxt-ev3/docs/maker/security-gadget.md
Peli de Halleux ea956f1a73
Buttons rename (#287)
* renaming up/down/click to released/pressed/bump

* missing images

* fixing signature issue

* updated strings

* white lego logo
2018-01-31 08:28:00 -08:00

243 B

Security Gadget

This program will activate an alarm when an object is lifted from the Touch Sensor.

sensors.touch1.onEvent(ButtonEvent.Released, function () {
    music.playSoundEffectUntilDone(sounds.informationActivate);
})