diff options
author | Dave Hylands <dhylands@gmail.com> | 2017-02-11 09:39:39 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-13 11:52:44 +1100 |
commit | 2f76c3ca0ad809e26f12722192e6fbdeab317566 (patch) | |
tree | 27805ed8adeae7a6b5a5a65827983bd55c60de80 | |
parent | 39100dc3777382de75a63bb5edd36ea73d41d776 (diff) | |
download | micropython-2f76c3ca0ad809e26f12722192e6fbdeab317566.tar.gz micropython-2f76c3ca0ad809e26f12722192e6fbdeab317566.zip |
docs/library/pyb.Pin: Minor typo fix, B6 should be A0.
On the PYBv1.0, X1 maps to A0, not B6.
-rw-r--r-- | docs/library/pyb.Pin.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/pyb.Pin.rst b/docs/library/pyb.Pin.rst index 4f589fff89..b766c5280c 100644 --- a/docs/library/pyb.Pin.rst +++ b/docs/library/pyb.Pin.rst @@ -21,7 +21,7 @@ Usage Model: CPU pins which correspond to the board pins are available as ``pyb.cpu.Name``. For the CPU pins, the names are the port letter followed by the pin number. On the PYBv1.0, ``pyb.Pin.board.X1`` and - ``pyb.Pin.cpu.B6`` are the same pin. + ``pyb.Pin.cpu.A0`` are the same pin. You can also use strings:: |