1.9 KiB
1.9 KiB
Receive String
Find the next string sent by radio
from another micro:bit.
radio.receiveString()
Return value
- the first string that was sent. If no string was sent, then this function returns an empty (blank) string.
Example: Simple receiver
Show the string sent by another micro:bit.
radio.onDataReceived(() => {
basic.showString(radio.receiveString());
});
Example: Two-way radio
If you load this program onto two or more micro:bits, you can send a code word from one of them to the others by pressing button A
.
The other micro:bits will receive the code word and then show it.
input.onButtonPressed(Button.A, () => {
radio.sendString("Codeword: TRIMARAN")
basic.showString("SENT");
})
radio.onDataReceived(() => {
basic.showString(radio.receiveString());
});
~hint
A radio that can both transmit and receive is called a transceiver.
~
Example: Mood radio
This is a simple program to send whether you are happy or sad over radio
.
Use the A
or B
button to select an emotion.
This program will also receive your friend's mood.
let data: string = "";
input.onButtonPressed(Button.A, () => {
radio.sendString("H");
});
input.onButtonPressed(Button.B, () => {
radio.sendString("S");
});
radio.onDataReceived(() => {
data = radio.receiveString();
if ("H" == data) {
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .
`);
} else if ("S" == data) {
basic.showLeds(`
. . . . .
. # . # .
. . . . .
. # # # .
# . . . #
`);
} else {
basic.showString("?");
}
});