rename micro:bit to @boardname@

This commit is contained in:
Peli de Halleux
2016-11-01 17:44:37 -07:00
parent 9bc1e38345
commit 89406330cf
226 changed files with 697 additions and 750 deletions

View File

@ -1,13 +1,13 @@
# Set Group
Make a program have the group ID you tell it for sending and receiving
with ``radio``. A group is like a cable channel (a micro:bit can only
with ``radio``. A group is like a cable channel (a @boardname@ can only
send or receive in one group at a time). A group ID is like the cable
channel number.
If you do not tell your program which group ID to use with this
function, it will figure out its own group ID by itself. If you load
the very same program onto two different micro:bits, they will be able
the very same program onto two different @boardname@s, they will be able
to talk to each other because they will have the same group ID.
```sig
@ -20,7 +20,7 @@ radio.setGroup(0);
### Simulator
This function only works on the micro:bit, not in browsers.
This function only works on the @boardname@, not in browsers.
### Example