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

@ -16,12 +16,12 @@ pins.setPull(DigitalPin.P9, PinPullMode.PullDown);
The pull-up and -down resistors are about 13kOhm.
### Parameters
## Parameters
* ``name``: The @boardname@ hardware pin to configure (``P0``-``P20``)
* ``pull``: The pull to which to set the pin (**down**, **up**, or **none**)
### Example
## Example
The following example sets the pull of pin ``P0`` to **up** (high).
@ -29,6 +29,6 @@ The following example sets the pull of pin ``P0`` to **up** (high).
pins.setPull(DigitalPin.P0, PinPullMode.PullUp);
```
### See also
## See also
[@boardname@ | mbed](https://developer.mbed.org/platforms/Microbit/)