pxt-ev3/docs/coding/light-the-way-3.md
2018-01-05 19:14:55 -08:00

412 B

Light the way Activity 3

sensors.color3.onLightChanged(LightIntensityMode.Ambient, LightCondition.Bright, function () {
    brick.clearScreen()
})
sensors.color3.onLightChanged(LightIntensityMode.Ambient, LightCondition.Dark, function () {
    brick.showImage(images.objectsLightOn)
})
sensors.touch1.onEvent(TouchSensorEvent.Pressed, function () {
    brick.showImage(images.objectsLightOn);
})