diff options
| author | Damien George | 2016-05-02 11:15:36 +0100 |
|---|---|---|
| committer | Damien George | 2016-05-02 11:15:36 +0100 |
| commit | 70ff7350e7ff369ab81d1f55e6645a5828928385 (patch) | |
| tree | 68da580aaeddc1f6e83cba7f4d50be646d909572 /docs | |
| parent | 26fd0ac5712677ddf2b02f07f4b289b0baf39bce (diff) | |
stmhal, cc3200: Change i2c.scan() method to scan addresses 0x08-0x77.
A standard I2C address is 7 bits but addresses 0b0000xxx and 0b1111xxx
are reserved. The scan() method is changed to reflect this, along with
the docs.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/library/machine.I2C.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/machine.I2C.rst b/docs/library/machine.I2C.rst index aa1caed20..d04ef5eef 100644 --- a/docs/library/machine.I2C.rst +++ b/docs/library/machine.I2C.rst @@ -106,7 +106,7 @@ Methods .. method:: i2c.scan() - Scan all I2C addresses from 0x01 to 0x7f and return a list of those that respond. + Scan all I2C addresses between 0x08 and 0x77 inclusive and return a list of those that respond. Only valid when in master mode. Constants |
