diff options
author | Dave Hylands <dhylands@gmail.com> | 2018-10-18 08:58:16 -0700 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-10-19 17:31:59 +1100 |
commit | b031b6f4ddf4c42c543d29214aad34d489438614 (patch) | |
tree | 0a8079024539d6848fdb0cff38da2d791bacaf38 /docs/library/pyb.Pin.rst | |
parent | 5e5aef53fb45dff57db9f4e054089a15e87ebb1b (diff) | |
download | micropython-b031b6f4ddf4c42c543d29214aad34d489438614.tar.gz micropython-b031b6f4ddf4c42c543d29214aad34d489438614.zip |
docs/pyb.Pin: Minor typo fix to specify Pin in pyb.Pin.cpu.
Diffstat (limited to 'docs/library/pyb.Pin.rst')
-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 07292f3440..3d019cd8e0 100644 --- a/docs/library/pyb.Pin.rst +++ b/docs/library/pyb.Pin.rst @@ -17,7 +17,7 @@ All Board Pins are predefined as pyb.Pin.board.Name:: g = pyb.Pin(pyb.Pin.board.X1, pyb.Pin.IN) CPU pins which correspond to the board pins are available -as ``pyb.cpu.Name``. For the CPU pins, the names are the port letter +as ``pyb.Pin.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.A0`` are the same pin. |