2018-01-06 04:14:55 +01:00
|
|
|
# Light the way Activity 3
|
|
|
|
|
|
|
|
```blocks
|
2018-04-03 21:03:15 +02:00
|
|
|
sensors.color3.onLightDetected(LightIntensityMode.Ambient, Light.Bright, function () {
|
2018-01-06 04:14:55 +01:00
|
|
|
brick.clearScreen()
|
|
|
|
})
|
2018-04-03 21:03:15 +02:00
|
|
|
sensors.color3.onLightDetected(LightIntensityMode.Ambient, Light.Dark, function () {
|
2018-01-06 04:14:55 +01:00
|
|
|
brick.showImage(images.objectsLightOn)
|
|
|
|
})
|
2018-01-31 17:28:00 +01:00
|
|
|
sensors.touch1.onEvent(ButtonEvent.Pressed, function () {
|
2018-01-06 04:14:55 +01:00
|
|
|
brick.showImage(images.objectsLightOn);
|
|
|
|
})
|
|
|
|
```
|