pxt-microbit Accessibility PR (#529)

* Accessibility changes
This commit is contained in:
Sam El-Husseini
2017-09-07 13:42:08 -07:00
committed by GitHub
parent 3f87576a50
commit e3975e65e5
357 changed files with 1641 additions and 3540 deletions

View File

@ -7,12 +7,12 @@ The maximum [string]() length is 12 characters.
radio.sendValue("name", 0);
```
### Parameters
## Parameters
* ``name`` is a [string](/types/string) to send by radio
* ``value`` a [number](/types/number) to send by radio
### Example: Broadcasting acceleration
## Example: Broadcasting acceleration
This program sends your @boardname@'s **acceleration** (amount it is
speeding up or slowing down) in the `x` direction (left and right) to
@ -37,7 +37,7 @@ radio.onDataPacketReceived(({ receivedString, receivedNumber }) => {
});
```
### See also
## See also
[on data packet received](/reference/radio/on-data-packet-received)