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 @@ Write an **analog** signal (`0` through `1023`) to the
pins.analogWritePin(AnalogPin.P0, 400)
```
### Parameters
## Parameters
* ``name`` is a [string](/types/string) that is the pin name you say (`P0` through `P4`, or `P10`)
* ``value`` is a [number](/types/number) from `0` through `1023`
### Example
## Example
This program writes `1023` to pin `P0`.
@ -20,15 +20,15 @@ This program writes `1023` to pin `P0`.
pins.analogWritePin(AnalogPin.P0, 1023)
```
#### ~hint
### ~hint
When you tell it to write `256` (for example), this function does not
_really_ write `256`. Instead, it writes a lot of different numbers,
and their average is `256`.
#### ~
### ~
### See also
## See also
[@boardname@ pins](/device/pins), [on pin pressed](/reference/input/on-pin-pressed), [analog read pin](/reference/pins/analog-read-pin), [digital read pin](/reference/pins/digital-read-pin), [digital write pin](/reference/pins/digital-write-pin)