1.3 KiB
1.3 KiB
Write Value To Serial
Writes the data received by radio
to serial in JSON format.
radio.writeValueToSerial();
~hint
This method only works for send number and send value. It does not work for send string, although you can send a string as part of send value.
~
Data received format
The format for received data printed to serial is as follows:
- send number:
{v:ValueSent,t:MicrobitTimeAlive,s:Unused}
- send value:
{v:ValueSent,t:MicrobitTimeAlive,s:Unused,n:"Name"}
Simulator
This function only works on the micro:bit, not in browsers.
Examples
When radio
data is received (after pressing the A
button on
the second micro:bit), this program sends temperature data to
serial.
input.onButtonPressed(Button.A, () => {
radio.sendNumber(input.temperature());
});
radio.onDataReceived(() => {
radio.writeValueToSerial();
});
Sample output to serial when A
button pressed:
{v:27,t:323,s:0}
See also
send number, send value, on data received
microbit-radio