From a9cfe83bdf26b88b945c5aa451a63a11bf5abba2 Mon Sep 17 00:00:00 2001 From: Ron Hale-Evans Date: Tue, 31 May 2016 12:06:03 -0700 Subject: [PATCH] Target=kids so removing all 'Important Security Considerations' for now. --- docs/reference/radio/on-data-received.md | 12 ------------ docs/reference/radio/receive-number.md | 12 ------------ docs/reference/radio/set-group.md | 12 ------------ 3 files changed, 36 deletions(-) diff --git a/docs/reference/radio/on-data-received.md b/docs/reference/radio/on-data-received.md index 61f2d6a2..b0095175 100644 --- a/docs/reference/radio/on-data-received.md +++ b/docs/reference/radio/on-data-received.md @@ -2,18 +2,6 @@ Registers code to run when a packet is received over ``radio``. -## Important Security Consideration - -The functions in the ``radio`` namespace allow the BBC micro:bit to communicate with other micro:bits. - -This API does not contain any form of encryption, authentication or authorization. It's purpose is solely for use as a teaching aid to demonstrate how simple communications operates, and to provide a sandpit through which learning can take place. - -For serious applications, BLE should be considered a substantially more secure alternative. - -```sig -radio.onDataReceived(() => {}) -``` - ### Parameters * body - is an action diff --git a/docs/reference/radio/receive-number.md b/docs/reference/radio/receive-number.md index 1d80eaff..85b45230 100644 --- a/docs/reference/radio/receive-number.md +++ b/docs/reference/radio/receive-number.md @@ -2,18 +2,6 @@ Reads the next radio packet if any and returns the first number. -## Important Security Consideration - -The functions in the ``radio`` namespace allow the BBC micro:bit to communicate with other micro:bits. - -This API does not contain any form of encryption, authentication or authorization. It's purpose is solely for use as a teaching aid to demonstrate how simple communications operates, and to provide a sandpit through which learning can take place. - -For serious applications, BLE should be considered a substantially more secure alternative. - -```sig -radio.receiveNumber() -``` - ### Return value * the first number [number](/reference/types/number) of the packet if any. `0` otherwise. diff --git a/docs/reference/radio/set-group.md b/docs/reference/radio/set-group.md index 161085d4..16c91118 100644 --- a/docs/reference/radio/set-group.md +++ b/docs/reference/radio/set-group.md @@ -4,18 +4,6 @@ Sets the group id for ``radio`` communications. A micro:bit can only listen to o Unless specified, the group id is automatically inferred from the script source. Every script with the same exact source code with start with the same group id. -## Important Security Consideration - -The functions in the ``radio`` namespace allow the BBC micro:bit to communicate with other micro:bits. - -This API does not contain any form of encryption, authentication or authorization. It's purpose is solely for use as a teaching aid to demonstrate how simple communications operates, and to provide a sandpit through which learning can take place. - -For serious applications, BLE should be considered a substantially more secure alternative. - -```sig -radio.setGroup(1) -``` - ### Parameters * ``id`` -- a [number](/reference/types/number) between ``0`` and ``255``.