diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-25 16:48:15 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-25 16:48:15 +0200 |
commit | 0cb10b52205f244cf3f35fe65f6f1d0fd2fed384 (patch) | |
tree | 7ae9d645682802fcdd3f2978b7b3622a142156f4 /docs/esp8266 | |
parent | 159f1aaca82b2f37010dc4a00838147612271b9b (diff) | |
download | micropython-0cb10b52205f244cf3f35fe65f6f1d0fd2fed384.tar.gz micropython-0cb10b52205f244cf3f35fe65f6f1d0fd2fed384.zip |
docs/esp8266/quickref: Add note about GPIO16.
Diffstat (limited to 'docs/esp8266')
-rw-r--r-- | docs/esp8266/quickref.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/esp8266/quickref.rst b/docs/esp8266/quickref.rst index ab508cf738..3cecb83998 100644 --- a/docs/esp8266/quickref.rst +++ b/docs/esp8266/quickref.rst @@ -113,6 +113,9 @@ Use the ``machine.Pin`` class:: Available pins are: 0, 1, 2, 3, 4, 5, 12, 13, 14, 15, 16. Note that Pin(1) and Pin(3) are REPL UART TX and RX respectively. +Also note that Pin(16) is a special pin (used for wakeup from deepsleep +mode) and may be not available for use with higher-level classes like +``Neopixel``. PWM (pulse width modulation) ---------------------------- |