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