From 708f2a4ca58d865ca482a4439ce43c3458407f22 Mon Sep 17 00:00:00 2001 From: Daryl Zuniga Date: Mon, 20 May 2019 11:26:52 -0700 Subject: [PATCH] remove code snippets that use onDataPacketReceived because that uses complex destructors which arent supported by python and that function is deprecated anyway (#2063) --- .../radio/on-data-packet-received.md | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/docs/reference/radio/on-data-packet-received.md b/docs/reference/radio/on-data-packet-received.md index c7b0ab58..8a308d1a 100644 --- a/docs/reference/radio/on-data-packet-received.md +++ b/docs/reference/radio/on-data-packet-received.md @@ -3,10 +3,6 @@ Run part of a program when the @boardname@ receives a [number](/types/number) or [string](/types/string) over radio. -```sig -radio.onDataPacketReceived(({receivedNumber, receivedString, time, serial, signal}) => { }); -``` - ## ~ hint **Deprecated** @@ -34,39 +30,6 @@ To add or remove the parts of the packet from the block, try clicking the blue g * `serial` - The serial number of the @boardname@ that sent this packet or `0` if the @boardname@ did not include its serial number. * `signal` - How strong the radio signal is from `-128` (weak) to `-42` (strong). -## Example - -This program keeps sending numbers that says how fast the @boardname@ is -slowing down or speeding up. It also receives numbers for the same -thing from nearby @boardname@s. It shows these numbers as a -[bar graph](/reference/led/plot-bar-graph). - -```blocks -basic.forever(() => { - radio.sendNumber(input.acceleration(Dimension.X)); -}) -radio.onReceivedNumber(function (receivedNumber) { - led.plotBarGraph(receivedNumber, 1023); -}) -``` - -## Example - -This program uses the signal strength from received packets to graph the -approximate distance between two @boardname@s. - -```blocks -basic.forever(() => { - radio.sendNumber(0) -}) -radio.onDataPacketReceived(({ signal, receivedNumber }) => { - led.plotBarGraph( - Math.abs(signal + 42), - 128 - 42 - ) -}) -``` - ## Troubleshooting The on radio data event can only be created once, due to the hardware restrictions.