pxt-ev3/docs/coding/light-the-way-2.md

10 lines
322 B
Markdown
Raw Normal View History

2018-01-06 04:14:55 +01:00
# Light the way Activity 2
```blocks
sensors.color3.onLightConditionDetected(LightIntensityMode.Ambient, LightCondition.Bright, function () {
2018-01-06 04:14:55 +01:00
brick.clearScreen()
})
sensors.color3.onLightConditionDetected(LightIntensityMode.Ambient, LightCondition.Dark, function () {
2018-01-06 04:14:55 +01:00
brick.showImage(images.objectsLightOn)
})
```