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,7 +7,7 @@ number format.
pins.i2cReadNumber(0, NumberFormat.Int8LE, false);
```
### Parameters
## Parameters
* ``address``: the 7-bit I2C address from which to read the number.
* ``format``: the number format. Formats include
@@ -19,7 +19,7 @@ pins.i2cReadNumber(0, NumberFormat.Int8LE, false);
* The number in each format name stands for the number of bits in the format.
* ``repeated`` repeated start, true - don't send stop at end
### Example
## Example
The following example reads a number in big-endian, 16-bit, unsigned integer
format from the 7-bit I2C address `32`.
@@ -28,12 +28,12 @@ format from the 7-bit I2C address `32`.
pins.i2cReadNumber(32, NumberFormat.UInt16BE, false);
```
#### ~hint
### ~hint
This function is not supported in the simulator.
#### ~
### ~
### See also
## See also
[I2C](https://en.wikipedia.org/wiki/I%C2%B2C)