Updated Linux (and Windows) instructions

This commit is contained in:
Ron Hale-Evans
2016-07-08 16:34:56 -07:00
parent 8751d2aaa1
commit 4cc7215d35
3 changed files with 41 additions and 13 deletions

View File

@ -1,8 +1,22 @@
# Stop Animation
Cancels the current animation and clears other pending animations .
Stop the animation that is playing and any animations that are waiting to
play.
```sig
led.stopAnimation()
```
### Example
This program...
```blocks
basic.showString("STOP ME! STOP ME! PLEASE, WON'T SOMEBODY STOP ME?");
input.onButtonPressed(Button.B, () => {
led.stopAnimation();
});
'```
### See Also