2017-10-26 23:58:34 -07:00
|
|
|
# Security Gadget
|
|
|
|
|
|
|
|
This program will activate an alarm when an object is lifted from the Touch Sensor.
|
|
|
|
|
|
|
|
```blocks
|
2018-01-31 08:28:00 -08:00
|
|
|
sensors.touch1.onEvent(ButtonEvent.Released, function () {
|
2018-01-18 16:43:16 -08:00
|
|
|
music.playSoundEffectUntilDone(sounds.informationActivate);
|
2017-10-26 23:58:34 -07:00
|
|
|
})
|
|
|
|
```
|