2016-03-26 00:47:20 +01:00
|
|
|
# Running Time
|
|
|
|
|
2016-05-23 21:45:14 +02:00
|
|
|
Find how long it has been since the program started.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```sig
|
|
|
|
input.runningTime();
|
|
|
|
```
|
|
|
|
|
|
|
|
### Returns
|
|
|
|
|
2016-05-23 21:45:14 +02:00
|
|
|
* 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
|
|
|
|
|
2016-05-23 21:45:14 +02: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-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
2016-05-23 21:45:14 +02:00
|
|
|
input.onButtonPressed(Button.B, () => {
|
|
|
|
let now = input.runningTime()
|
|
|
|
basic.showNumber(now)
|
|
|
|
})
|
2016-03-26 00:47:20 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
### Lessons
|
|
|
|
|
2016-04-13 17:27:45 +02:00
|
|
|
[speed button](/lessons/speed-button)
|
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
|
|
|
|