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(() => {
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
## Example: compass
|
2016-03-26 00:47:20 +01:00
|
|
|
|
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
|
2019-12-02 05:58:26 +01:00
|
|
|
let degrees = 0
|
2016-03-26 00:47:20 +01:00
|
|
|
basic.forever(() => {
|
2019-12-02 05:58:26 +01:00
|
|
|
degrees = input.compassHeading()
|
|
|
|
if (degrees < 45) {
|
|
|
|
basic.showString("N")
|
|
|
|
} else if (degrees < 135) {
|
|
|
|
basic.showString("E")
|
|
|
|
} else if (degrees < 225) {
|
|
|
|
basic.showString("S")
|
|
|
|
} else if (degrees < 315) {
|
|
|
|
basic.showString("W")
|
|
|
|
} else {
|
|
|
|
basic.showString("N")
|
2016-03-26 00:47:20 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
## Example: counter
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
The following example keeps showing the [number](/types/number) stored in a global variable.
|
2016-05-20 22:09:18 +02:00
|
|
|
When you press button `A`, the number gets bigger.
|
2016-11-01 18:42:42 +01:00
|
|
|
You can use a program like this to count things with your @boardname@.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
let num = 0
|
|
|
|
basic.forever(() => {
|
2019-12-02 05:58:26 +01:00
|
|
|
basic.showNumber(num)
|
2016-03-26 00:47:20 +01:00
|
|
|
})
|
2022-04-26 19:28:42 +02:00
|
|
|
input.onButtonEvent(Button.A, ButtonEvent.Click, () => {
|
2016-03-26 00:47:20 +01:00
|
|
|
num = num + 1
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2019-12-02 05:58:26 +01: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.
|
2016-11-02 01:44:37 +01:00
|
|
|
Try this on your @boardname@:
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.forever(() => {
|
2019-12-02 05:58:26 +01:00
|
|
|
basic.showNumber(6789)
|
2016-03-26 00:47:20 +01:00
|
|
|
})
|
2022-04-26 19:28:42 +02:00
|
|
|
input.onButtonEvent(Button.A, ButtonEvent.Click, () => {
|
2019-12-02 05:58:26 +01:00
|
|
|
basic.showNumber(2)
|
2016-03-26 00:47:20 +01:00
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
## See also
|
2016-03-26 00:47:20 +01:00
|
|
|
|
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
|
|
|
|