Writes the last packet received by the radio
to serial in JSON format.
Should be called within a callback to
on data packet received.
radio.writeReceivedPacketToSerial();
The format for received data printed to serial is as follows:
{v:ValueSent,t:MicrobitTimeAlive,s:SerialNumber}
{v:ValueSent,t:MicrobitTimeAlive,s:SerialNumber,n:"Name"}
{t:MicrobitTimeAlive,s:SerialNumber,n:"Text"}
When radio
data is received (after pressing the A
button on
the second Calliope mini), this program sends temperature data to
serial.
input.onButtonPressed(Button.A, () => {
radio.sendNumber(input.temperature());
});
radio.onDataPacketReceived(() => {
radio.writeReceivedPacketToSerial();
});
Sample output to serial when A
button pressed:
{v:27,t:323,s:0}
send number, send value, send string, on data packet received
radio