pxt-calliope/docs/reference/radio/write-value-to-serial.md
Juri Wolf 5f7a8e5301
Updates for V4 (#197)
* update yotta defaults for 16kb devices

* refactor deprecated blocks

* updates for button events

* update button events

* update refference

* update docs

* update docs

* update button event blocks

* update docs

* update block id
2022-08-10 09:36:19 -07:00

1.3 KiB

write Value To Serial

Write the data received by radio to serial in JSON format.

radio.writeValueToSerial();

~ hint

Deprecated

This API has been deprecated! Use write received packet to serial instead.

~

Data received format

The format for received data printed to serial is as follows:

  • send number: {v:ValueSent,t:MicrobitTimeAlive,s:SerialNumber}
  • send value: {v:ValueSent,t:MicrobitTimeAlive,s:SerialNumber,n:"Name"}
  • send string: {t:MicrobitTimeAlive,s:SerialNumber,n:"Text"}

Examples

When radio data is received (after pressing the A button on the second @boardname@), this program sends temperature data to serial.

radio.setGroup(1)
input.onButtonEvent(Button.A, input.buttonEventClick(), () => {
    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, send string, on data packet received

radio