e94ac6f6f1
* renaming brick.setLight to brick.setStatusLight * updated docs
936 B
936 B
set Light
Set the light on the brick to a solid or flashing color.
brick.setStatusLight(StatusLight.Red);
Parameters
- pattern: the color or color pattern for the brick light to show. The brick light can have these color patterns:
off
: brick light is offgreen
: solid greenred
: solid redorange
: solid orangegreen flash
: flashing greenred flash
: flashing redorange flash
: flashing orangegreen pulse
: pulsing greenred pulse
: pulsing redorange pulse
: pulsing orange
Example
Repeatedly show a different color pattern for the brick light.
loops.forever(function () {
brick.setStatusLight(StatusLight.Orange)
loops.pause(1000)
brick.setStatusLight(StatusLight.GreenFlash)
loops.pause(2000)
brick.setStatusLight(StatusLight.RedPulse)
loops.pause(2000)
brick.setStatusLight(StatusLight.Off)
loops.pause(500)
})