pxt-calliope/docs/reference/led/set-brightness.md

31 lines
845 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Set Brightness
Make the [LED screen](/device/screen) as bright as you say when it is
turned on.
2016-03-26 00:47:20 +01:00
```sig
led.setBrightness(121)
```
### Parameters
* a [number](/reference/types/number) that means how bright the screen is when it is turned on, from `0` (darkest) to `255` (brightest). For example, the number `127` means the screen is halfway bright when it is turned on.
2016-03-26 00:47:20 +01:00
### Example: change brightness
This program makes the screen brightness 100% (255). Then it turns on
the center LED (`2, 2`), waits for one second, and then sets the screen
brightness to 50% (128):
2016-03-26 00:47:20 +01:00
```blocks
led.setBrightness(255)
led.plot(2, 2)
basic.pause(1000)
led.setBrightness(led.brightness() / 2)
2016-03-26 00:47:20 +01:00
```
### See also
2016-04-13 17:27:45 +02:00
[brightness](/reference/led/brightness), [fade in](/reference/led/fade-in), [fade out](/reference/led/fade-out), [LED screen](/device/screen)
2016-03-26 00:47:20 +01:00