summaryrefslogtreecommitdiffstatshomepage
path: root/docs/esp8266/quickref.rst
diff options
context:
space:
mode:
authorRadomir Dopieralski <openstack@sheep.art.pl>2016-05-14 00:02:02 +0200
committerRadomir Dopieralski <openstack@sheep.art.pl>2016-05-14 00:02:02 +0200
commitccb00b77240e7ff7b52ee6df2a338a07387dedbd (patch)
treeebc91e7b339ae125dc16f80ff74abe9b0947b159 /docs/esp8266/quickref.rst
parent87981fc517ff1fafd1513af3e26df39bf57e6978 (diff)
downloadmicropython-ccb00b77240e7ff7b52ee6df2a338a07387dedbd.tar.gz
micropython-ccb00b77240e7ff7b52ee6df2a338a07387dedbd.zip
docs/esp8266/quickstart: remove i2c examples with stop=False
Since the ``stop`` parameter has been dropped.
Diffstat (limited to 'docs/esp8266/quickref.rst')
-rw-r--r--docs/esp8266/quickref.rst3
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/esp8266/quickref.rst b/docs/esp8266/quickref.rst
index 87f57c5848..d2d677dc79 100644
--- a/docs/esp8266/quickref.rst
+++ b/docs/esp8266/quickref.rst
@@ -199,9 +199,6 @@ The I2C driver is implemented in software and works on all pins::
buf = bytearray(10) # create a buffer with 10 bytes
i2c.writeto(0x3a, buf) # write the given buffer to the slave
- i2c.readfrom(0x3a, 4, stop=False) # don't send a stop bit after reading
- i2c.writeto(0x3a, buf, stop=False) # don't send a stop bit after writing
-
Deep-sleep mode
---------------