2016-03-25 16:47:20 -07:00
# Fade out
2016-04-13 08:27:45 -07:00
Gradually decrease the [LED screen ](/device/screen ) brightness until the LED lights are turned off.
2016-03-25 16:47:20 -07:00
```sig
led.fadeOut(700);
```
2017-09-07 13:42:08 -07:00
## Parameters
2016-03-25 16:47:20 -07:00
2017-03-16 07:57:41 -07:00
* ms - [Number ](/types/number ); the speed that the screen brightness is decreased, expressed in milliseconds (1,000 milliseconds = 1 second). The smaller the number the faster the screen brightness decreased.
2016-03-25 16:47:20 -07:00
2017-09-07 13:42:08 -07:00
## Example: fade away letter A
2016-03-25 16:47:20 -07:00
The following example sets the screen brightness to the maximum brightness, displays the letter A, and then gradually fades the letter away:
```blocks
led.setBrightness(255)
basic.showString("A", 1000)
led.fadeOut(1000)
```
2017-09-07 13:42:08 -07:00
## See also
2016-03-25 16:47:20 -07:00
2016-04-13 08:27:45 -07:00
[brightness ](/reference/led/brightness ), [fade in ](/reference/led/fade-in ), [set brightness ](/reference/led/set-brightness )
2016-03-25 16:47:20 -07:00