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

70 lines
1.5 KiB
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Forever
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
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 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 @boardname@.
2016-03-26 00:47:20 +01:00
```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
})
```
### Competing for the LED screen
2016-03-26 00:47:20 +01: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(() => {
basic.showNumber(6789, 150)
})
input.onButtonPressed(Button.A, () => {
basic.showNumber(2, 150)
})
```
### See also
[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