From ccb00b77240e7ff7b52ee6df2a338a07387dedbd Mon Sep 17 00:00:00 2001 From: Radomir Dopieralski Date: Sat, 14 May 2016 00:02:02 +0200 Subject: [PATCH] docs/esp8266/quickstart: remove i2c examples with stop=False Since the ``stop`` parameter has been dropped. --- docs/esp8266/quickref.rst | 3 --- 1 file changed, 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 ---------------