pxt-calliope/docs/reference/radio/send-number.md

55 lines
1.1 KiB
Markdown
Raw Normal View History

# send Number
2016-03-26 00:47:20 +01:00
Broadcast a [number](/types/number) to other @boardname@s connected via ``radio``.
2016-07-18 23:04:15 +02:00
```sig
radio.sendNumber(0);
```
2016-03-26 00:47:20 +01:00
## Parameters
2016-03-26 00:47:20 +01:00
* **value**: a [number](/types/number) to send.
2016-03-26 00:47:20 +01:00
## ~ hint
2016-06-10 00:30:47 +02:00
Watch this video to see how the radio hardware works on the @boardname@:
https://www.youtube.com/watch?v=Re3H2ISfQE8
## ~
## Examples
### Broadcasting acceleration
2016-03-26 00:47:20 +01:00
2016-11-02 01:44:37 +01:00
This example broadcasts the value of your @boardname@'s ``acceleration``
in the `x` direction (left and right) to other @boardname@s. This kind
2016-07-18 23:04:15 +02:00
of program might be useful in a model car or model rocket.
2016-03-26 00:47:20 +01:00
```blocks
input.onButtonEvent(Button.A, ButtonEvent.Click, () => {
2016-03-26 00:47:20 +01:00
radio.sendNumber(input.acceleration(Dimension.X))
})
```
### Light level sender
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
[on received number](/reference/radio/on-received-number) example.
```blocks
radio.setGroup(99)
basic.forever(() => {
let level = input.lightLevel()
radio.sendNumber(level)
})
```
## See also
2016-03-26 00:47:20 +01:00
[on received number](/reference/radio/on-received-number)
```package
radio
```