pxt-calliope/docs/reference/radio/set-group.md

23 lines
610 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Set Group
Sets the group id for ``radio`` communications. A micro:bit can only listen to one group ID at any time.
Unless specified, the group id is automatically inferred from the script source. Every script with the same exact source code with start with the same group id.
### Parameters
2016-04-16 00:02:26 +02:00
* ``id`` -- a [number](/reference/types/number) between ``0`` and ``255``.
2016-03-26 00:47:20 +01:00
### Example
Sets the group to 128.
```blocks
radio.setGroup(128)
```
### See also
2016-04-16 00:02:26 +02:00
[receive number](/reference/radio/receive-number), [send number](/reference/radio/send-number), [on data received](/reference/radio/on-data-received)
2016-03-26 00:47:20 +01:00