2016-03-26 00:47:20 +01:00
|
|
|
# Send Number
|
|
|
|
|
2016-07-18 23:04:15 +02:00
|
|
|
Broadcast a [number](/reference/types/number) to other micro:bits connected via ``radio``.
|
|
|
|
|
|
|
|
```sig
|
|
|
|
radio.sendNumber(0);
|
|
|
|
```
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
2016-07-18 23:04:15 +02:00
|
|
|
* ``value`` - a [number](/reference/types/number) to send.
|
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: Broadcasting acceleration
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-07-18 23:04:15 +02:00
|
|
|
This example broadcasts the value of your micro:bit's ``acceleration``
|
|
|
|
in the `x` direction (left and right) to other micro:bits. This kind
|
|
|
|
of program might be useful in a model car or model rocket.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
radio.sendNumber(input.acceleration(Dimension.X))
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-05-28 01:22:38 +02:00
|
|
|
### Light level sender
|
|
|
|
|
2016-06-01 02:02:22 +02:00
|
|
|
This example broadcasts the level of the light around it.
|
|
|
|
You can do some interesting things with it if you use it along with the
|
|
|
|
[Mailbot](/reference/radio/receive-number) example.
|
2016-05-28 01:22:38 +02:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
radio.setGroup(99)
|
|
|
|
basic.forever(() => {
|
|
|
|
let level = input.lightLevel()
|
|
|
|
radio.sendNumber(level)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2016-03-26 00:47:20 +01:00
|
|
|
### See also
|
|
|
|
|
2016-04-16 00:02:26 +02:00
|
|
|
[receive number](/reference/radio/receive-number), [on data received](/reference/radio/on-data-received)
|
2016-08-09 17:28:08 +02:00
|
|
|
|
|
|
|
```package
|
|
|
|
microbit-radio
|
|
|
|
```
|