pxt-calliope/docs/reference/input/running-time.md

32 lines
639 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Running Time
Find how long it has been since the program started.
2016-03-26 00:47:20 +01:00
```sig
input.runningTime();
```
### Returns
* the [Number](/reference/types/number) of milliseconds since the program started.
(One second is 1000 milliseconds.)
2016-03-26 00:47:20 +01:00
### Example: elapsed time
When you press button `B` on the microbit, this
program finds the number of milliseconds since the program started
and shows it on the [LED screen](/device/screen).
2016-03-26 00:47:20 +01:00
```blocks
input.onButtonPressed(Button.B, () => {
let now = input.runningTime()
basic.showNumber(now)
})
2016-03-26 00:47:20 +01:00
```
### See also
2016-04-13 17:27:45 +02:00
[show number](/reference/basic/show-number), [pause](/reference/basic/pause)
2016-03-26 00:47:20 +01:00