2016-04-06 01:52:50 +02:00
|
|
|
/**
|
|
|
|
* Communicate data using radio packets
|
|
|
|
*/
|
2016-05-19 20:59:57 +02:00
|
|
|
//% color=#E3008C weight=34
|
2016-03-10 23:01:04 +01:00
|
|
|
namespace radio {
|
2016-10-24 21:55:44 +02:00
|
|
|
export class Packet {
|
|
|
|
/**
|
|
|
|
* The number payload if a number was sent in this packet (via ``sendNumber()`` or ``sendValue()``)
|
|
|
|
* or 0 if this packet did not contain a number.
|
|
|
|
*/
|
|
|
|
public receivedNumber: number;
|
|
|
|
/**
|
|
|
|
* The string payload if a string was sent in this packet (via ``sendString()`` or ``sendValue()``)
|
|
|
|
* or the empty string if this packet did not contain a string.
|
|
|
|
*/
|
2016-10-26 01:39:13 +02:00
|
|
|
public receivedString: string;
|
2016-10-24 21:55:44 +02:00
|
|
|
/**
|
|
|
|
* The system time of the sender of the packet at the time the packet was sent.
|
|
|
|
*/
|
|
|
|
public time: number;
|
|
|
|
/**
|
|
|
|
* The serial number of the sender of the packet or 0 if the sender did not sent their serial number.
|
|
|
|
*/
|
|
|
|
public serial: number;
|
|
|
|
/**
|
|
|
|
* The received signal strength indicator (RSSI) of the packet.
|
|
|
|
*/
|
|
|
|
public signal: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers code to run when the radio receives a packet. Also takes the
|
|
|
|
* received packet from the radio queue.
|
|
|
|
*/
|
2016-10-25 01:30:21 +02:00
|
|
|
//% help=radio/on-data-packet-received
|
2016-10-24 21:55:44 +02:00
|
|
|
//% mutate=true
|
|
|
|
//% mutateText=Packet
|
2016-10-26 01:39:13 +02:00
|
|
|
//% mutateDefaults="receivedNumber;receivedString,receivedNumber;receivedString"
|
2016-10-24 21:55:44 +02:00
|
|
|
//% blockId=radio_on_packet block="on radio received" blockGap=8
|
|
|
|
export function onDataPacketReceived(cb: (packet: Packet) => void) {
|
|
|
|
onDataReceived(() => {
|
|
|
|
receiveNumber();
|
|
|
|
const packet = new Packet();
|
|
|
|
packet.receivedNumber = receivedNumber();
|
|
|
|
packet.time = receivedTime();
|
|
|
|
packet.serial = receivedSerial();
|
2016-10-26 01:39:13 +02:00
|
|
|
packet.receivedString = receivedString();
|
2016-10-24 21:55:44 +02:00
|
|
|
packet.signal = receivedSignalStrength();
|
|
|
|
cb(packet)
|
|
|
|
});
|
|
|
|
}
|
2016-03-10 23:01:04 +01:00
|
|
|
}
|