pxt-calliope/docs/reference/basic/forever.md

66 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Forever
2016-04-13 17:27:45 +02:00
Repeat code [in the background](/reference/control/in-background) forever.
2016-03-26 00:47:20 +01:00
```sig
basic.forever(() => {
})
```
### Example: compass
2016-04-13 17:27:45 +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
The following example continually shows the current value of a global variable:
```blocks
let num = 0
basic.forever(() => {
basic.showNumber(num, 150)
})
input.onButtonPressed(Button.A, () => {
2016-03-26 00:47:20 +01:00
num = num + 1
})
```
### Contention for the LED display
If you have multiple processes that each show something on the LED screen, you may get unexpected results. Try, for example:
```blocks
basic.forever(() => {
basic.showNumber(6789, 150)
})
input.onButtonPressed(Button.A, () => {
basic.showNumber(2, 150)
})
```
### Lessons
2016-04-16 01:15:08 +02:00
[blink](/lessons/blink), [snowflake-fall](/lessons/snowflake-fall), [flashing-heart](/lessons/flashing-heart)
2016-03-26 00:47:20 +01:00
### See also
2016-04-16 00:53:20 +02:00
[while](/reference/loops/while), [on button pressed](/reference/input/on-button-pressed), [in background](/reference/control/in-background)
2016-03-26 00:47:20 +01:00