2018-01-05 19:14:55 -08:00
|
|
|
# Light the way Activity 2
|
|
|
|
|
|
|
|
```blocks
|
2018-04-03 12:03:15 -07:00
|
|
|
sensors.color3.onLightDetected(LightIntensityMode.Ambient, Light.Bright, function () {
|
2018-01-05 19:14:55 -08:00
|
|
|
brick.clearScreen()
|
|
|
|
})
|
2018-04-03 12:03:15 -07:00
|
|
|
sensors.color3.onLightDetected(LightIntensityMode.Ambient, Light.Dark, function () {
|
2018-01-05 19:14:55 -08:00
|
|
|
brick.showImage(images.objectsLightOn)
|
|
|
|
})
|
|
|
|
```
|