2016-03-25 16:47:20 -07:00
# Show Number
2016-05-19 13:46:02 -07:00
Show a number on the [LED screen ](/device/screen ). It will slide left if it has more than one digit.
2016-03-25 16:47:20 -07:00
2017-03-12 04:16:01 -07:00
```sig
basic.showNumber(2)
```
2016-03-25 16:47:20 -07:00
### Parameters
2017-03-16 07:57:41 -07:00
* `value` is a [Number ](/types/number ).
* `interval` is an optional [Number ](/types/number ). It means the number of milliseconds before sliding the `value` left by one LED each time. Bigger intervals make the sliding slower.
2016-03-25 16:47:20 -07:00
2016-05-19 13:46:02 -07:00
### Examples:
2016-03-25 16:47:20 -07:00
2016-05-19 13:46:02 -07:00
To show the number 10:
2016-03-25 16:47:20 -07:00
2017-03-12 04:16:01 -07:00
```blocks
2016-03-25 16:47:20 -07:00
basic.showNumber(10)
2017-03-12 04:16:01 -07:00
```
2016-03-25 16:47:20 -07:00
2016-05-19 16:50:02 -07:00
To show the number stored in a variable:
2016-03-25 16:47:20 -07:00
2017-03-12 04:16:01 -07:00
```blocks
2016-03-25 16:47:20 -07:00
let x = 1
basic.showNumber(x)
2017-03-12 04:16:01 -07:00
```
2016-03-25 16:47:20 -07:00
### Example: count to 5
2016-06-14 17:20:45 -04:00
This example uses a [for ](/blocks/loops/for ) loop to show numbers ``0`` through ``5` ` on the screen:
2016-03-25 16:47:20 -07:00
2017-03-12 04:16:01 -07:00
```blocks
2016-05-19 13:46:02 -07:00
for (let i = 0; i < 6 ; i + + ) {
basic.showNumber(i)
2016-03-25 16:47:20 -07:00
basic.pause(200)
}
2017-03-12 04:16:01 -07:00
```
2016-03-25 16:47:20 -07:00
### Other show functions
2017-03-16 07:57:41 -07:00
* Use [show string ](/reference/basic/show-string ) to show a [String ](/types/string ) with letters on the screen.
2016-05-19 16:50:02 -07:00
* Use [show animation ](/reference/basic/show-animation ) to show a group of pictures on the screen, one after another.
2016-03-25 16:47:20 -07:00
### See also
2017-03-16 07:57:41 -07:00
[show string ](/reference/basic/show-string ), [show animation ](/reference/basic/show-animation ), [Number ](/types/number ), [math ](/blocks/math )
2016-03-25 16:47:20 -07:00