diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-08 15:57:46 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-08 15:57:46 +0300 |
commit | 0d8c22b122cf044e9bbb561d84ef614150a176e5 (patch) | |
tree | 197f71d98206e2e62ea3157bb7d491b310eb959e /docs | |
parent | 8171995ee9145922d86b9130e4084466ad8c9f0e (diff) | |
download | micropython-0d8c22b122cf044e9bbb561d84ef614150a176e5.tar.gz micropython-0d8c22b122cf044e9bbb561d84ef614150a176e5.zip |
docs/pyb.Pin: af_list() is a normal method, not a class method.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/pyb.Pin.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/library/pyb.Pin.rst b/docs/library/pyb.Pin.rst index 65ae601bed..c5e91e0b16 100644 --- a/docs/library/pyb.Pin.rst +++ b/docs/library/pyb.Pin.rst @@ -85,11 +85,7 @@ Constructors Class methods ------------- - - .. method:: Pin.af_list() - - Returns an array of alternate functions available for this pin. - + .. method:: Pin.debug([state]) Get or set the debugging state (``True`` or ``False`` for on or off). @@ -179,6 +175,10 @@ Methods Get the pin port. + .. method:: Pin.af_list() + + Returns an array of alternate functions available for this pin. + .. method:: pin.pull() Returns the currently configured pull of the pin. The integer returned |