summaryrefslogtreecommitdiffstatshomepage
path: root/docs/esp32
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-12-04 15:02:54 +1100
committerDamien George <damien.p.george@gmail.com>2019-12-04 15:02:54 +1100
commit90c524c1141ed9ad8fa882dba6f36199a7768e32 (patch)
tree0ee0799df23cb231c47de6f0b885d6f124e448c6 /docs/esp32
parent40cc7ec677e962c47db567479e42c27ed8911ff6 (diff)
downloadmicropython-90c524c1141ed9ad8fa882dba6f36199a7768e32.tar.gz
micropython-90c524c1141ed9ad8fa882dba6f36199a7768e32.zip
docs: Remove spaces on lines that are empty.
Diffstat (limited to 'docs/esp32')
-rw-r--r--docs/esp32/quickref.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/esp32/quickref.rst b/docs/esp32/quickref.rst
index 20e728d1c7..ef9b0a2e8c 100644
--- a/docs/esp32/quickref.rst
+++ b/docs/esp32/quickref.rst
@@ -359,10 +359,10 @@ Notes:
To further reduce power consumption it is possible to disable the internal pullups::
p1 = Pin(4, Pin.IN, Pin.PULL_HOLD)
-
+
After leaving deepsleep it may be necessary to un-hold the pin explicitly (e.g. if
it is an output pin) via::
-
+
p1 = Pin(4, Pin.OUT, None)
OneWire driver