2016-03-26 00:47:20 +01:00
|
|
|
# Receive Number
|
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
Receives the next number sent by a micro:bit in the same ``radio`` group.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-06-10 00:30:47 +02:00
|
|
|
### Returns
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
* the first [number](/reference/types/number) that the micro:bit received. If it did not receive any numbers, this function will return `0`.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-06-10 00:30:47 +02:00
|
|
|
### Simulator
|
|
|
|
|
|
|
|
This function only works on the micro:bit, not in browsers.
|
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
### Example: Simple number receiver
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
This example receives the number broadcasted another micro:bit and shows it
|
|
|
|
as a bar graph.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
radio.onDataReceived(() => {
|
|
|
|
led.plotBarGraph(radio.receiveNumber(), 1023);
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
### Example: Light level receiver
|
|
|
|
|
|
|
|
This example shows the light level from the [light level sender example](/reference/input/send-number)
|
|
|
|
as a number.
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
radio.setGroup(99)
|
|
|
|
basic.forever(() => {
|
|
|
|
let level = radio.receiveNumber()
|
|
|
|
basic.showNumber(level)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
### Example: Mailbot
|
|
|
|
|
|
|
|
This example receives the light level from the [light level sender example](/reference/input/send-number)
|
|
|
|
and shows a text string like **ALERT** if the light level becomes much brighter.
|
|
|
|
To find when the mail arrives, you can put the light level sender in your mailbox and it will
|
|
|
|
tell you when someone opens the box. You can try this with a normal
|
|
|
|
box too, like a present for a friend.
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
radio.setGroup(99)
|
|
|
|
let max = 0
|
|
|
|
basic.forever(() => {
|
|
|
|
let level = radio.receiveNumber()
|
|
|
|
if (level > max) {
|
|
|
|
max = level
|
|
|
|
}
|
|
|
|
if (max > 10) {
|
|
|
|
basic.showString("ALERT")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-03-26 00:47:20 +01:00
|
|
|
### See also
|
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
[send number](/reference/input/send-number), [on data received](/reference/radio/on-data-received)
|
2016-03-26 00:47:20 +01:00
|
|
|
|