738 B
738 B
set Transmit Serial Number
Make the radio
packet embed the board serial number with each packet of data.
radio.setTransmitSerialNumber(true);
Parameters
transmit
is a boolean that, whentrue
, means that the board serial number is included in each transmitted packet. Iffalse
, the serial number value is set to0
.
Example
This program makes the radio
send the serial number in each packet.
radio.setTransmitSerialNumber(true);
See also
received packet property, send number, send value, send string
radio