2016-03-26 00:47:20 +01:00
|
|
|
# Forever
|
|
|
|
|
2016-05-20 22:09:18 +02:00
|
|
|
Keep running part of a program
|
|
|
|
[in the background](/reference/control/in-background).
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```sig
|
|
|
|
basic.forever(() => {
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
### Example: compass
|
|
|
|
|
2016-05-20 22:09:18 +02:00
|
|
|
The following example constantly checks the
|
|
|
|
[compass heading](/reference/input/compass-heading)
|
|
|
|
and updates the screen with the direction.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.forever(() => {
|
|
|
|
let heading = input.compassHeading()
|
|
|
|
if (heading < 45) {
|
|
|
|
basic.showString("N", 100)
|
|
|
|
} else if (heading < 135) {
|
|
|
|
basic.showString("E", 100)
|
|
|
|
}
|
|
|
|
else if (heading < 225) {
|
|
|
|
basic.showString("S", 100)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
basic.showString("W", 100)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
### Example: counter
|
|
|
|
|
2016-05-20 22:09:18 +02:00
|
|
|
The following example keeps showing the [number](/reference/types/number) stored in a global variable.
|
|
|
|
When you press button `A`, the number gets bigger.
|
|
|
|
You can use a program like this to count things with your BBC micro:bit.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
let num = 0
|
|
|
|
basic.forever(() => {
|
|
|
|
basic.showNumber(num, 150)
|
|
|
|
})
|
2016-03-30 06:17:57 +02:00
|
|
|
input.onButtonPressed(Button.A, () => {
|
2016-03-26 00:47:20 +01:00
|
|
|
num = num + 1
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-05-20 22:09:18 +02:00
|
|
|
### Competing for the LED screen
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-05-20 22:09:18 +02:00
|
|
|
If different parts of a program are each trying
|
|
|
|
to show something on the LED screen at the same time,
|
|
|
|
you may get unexpected results.
|
|
|
|
Try this on your micro:bit:
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.forever(() => {
|
|
|
|
basic.showNumber(6789, 150)
|
|
|
|
})
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
basic.showNumber(2, 150)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
### See also
|
|
|
|
|
2016-06-14 23:20:45 +02:00
|
|
|
[while](/blocks/loops/while), [on button pressed](/reference/input/on-button-pressed), [in background](/reference/control/in-background)
|
2016-03-26 00:47:20 +01:00
|
|
|
|