Finished animation API

This commit is contained in:
Ron Hale-Evans 2016-07-28 12:16:18 -07:00
parent 338e507b51
commit 4f7dd75fbe

View File

@ -9,14 +9,24 @@ led.stopAnimation()
### Example ### Example
This program... This program sets up the ``stop animation`` part of the program,
and then shows a string that you can stop with button ``B``.
```blocks ```blocks
basic.showString("STOP ME! STOP ME! PLEASE, WON'T SOMEBODY STOP ME?");
input.onButtonPressed(Button.B, () => { input.onButtonPressed(Button.B, () => {
led.stopAnimation(); led.stopAnimation();
}); });
'``` basic.showString("STOP ME! STOP ME! PLEASE, WON'T SOMEBODY STOP ME?");
```
### ~hint
It's important to set up ``stop animation`` before showing the
animation, so the ``stop animation`` part of the program will be ready
to go.
### ~
### See Also ### See Also
[show animation](/reference/basic/show-animation)