2016-03-25 16:47:20 -07:00
|
|
|
# Running Time
|
|
|
|
|
2017-10-11 11:31:07 -07:00
|
|
|
Find how long it has been since the program started in milli-seconds.
|
2016-03-25 16:47:20 -07:00
|
|
|
|
|
|
|
```sig
|
|
|
|
input.runningTime();
|
|
|
|
```
|
|
|
|
|
2017-09-07 13:42:08 -07:00
|
|
|
## Returns
|
2016-03-25 16:47:20 -07:00
|
|
|
|
2017-03-16 07:57:41 -07:00
|
|
|
* the [Number](/types/number) of milliseconds since the program started.
|
2016-05-23 12:45:14 -07:00
|
|
|
(One second is 1000 milliseconds.)
|
2016-03-25 16:47:20 -07:00
|
|
|
|
2017-09-07 13:42:08 -07:00
|
|
|
## Example: elapsed time
|
2016-03-25 16:47:20 -07:00
|
|
|
|
2016-05-23 12:45:14 -07:00
|
|
|
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-25 16:47:20 -07:00
|
|
|
|
|
|
|
```blocks
|
2016-05-23 12:45:14 -07:00
|
|
|
input.onButtonPressed(Button.B, () => {
|
|
|
|
let now = input.runningTime()
|
|
|
|
basic.showNumber(now)
|
|
|
|
})
|
2016-03-25 16:47:20 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-09-07 13:42:08 -07:00
|
|
|
## See also
|
2016-03-25 16:47:20 -07:00
|
|
|
|
2016-04-13 08:27:45 -07:00
|
|
|
[show number](/reference/basic/show-number), [pause](/reference/basic/pause)
|
2016-03-25 16:47:20 -07:00
|
|
|
|