Migrate docs from the other repo
This commit is contained in:
30
docs/reference/led/fade-out.md
Normal file
30
docs/reference/led/fade-out.md
Normal file
@ -0,0 +1,30 @@
|
||||
# Fade out
|
||||
|
||||
Gradually decrease the [LED screen](/microbit/device/screen) brightness until the LED lights are turned off.
|
||||
|
||||
```sig
|
||||
led.fadeOut(700);
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
* ms - [Number](/microbit/reference/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.
|
||||
|
||||
### Example: fade away letter A
|
||||
|
||||
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)
|
||||
```
|
||||
|
||||
### Lessons
|
||||
|
||||
[glowing sword](/microbit/lessons/glowing-sword)
|
||||
|
||||
### See also
|
||||
|
||||
[brightness](/microbit/reference/led/brightness), [fade in](/microbit/reference/led/fade-in), [set brightness](/microbit/reference/led/set-brightness)
|
||||
|
Reference in New Issue
Block a user