Skip to content
Snippets Groups Projects
Commit ccb00b77 authored by Radomir Dopieralski's avatar Radomir Dopieralski
Browse files

docs/esp8266/quickstart: remove i2c examples with stop=False

Since the ``stop`` parameter has been dropped.
parent 87981fc5
No related branches found
No related tags found
No related merge requests found
...@@ -199,9 +199,6 @@ The I2C driver is implemented in software and works on all pins:: ...@@ -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 buf = bytearray(10) # create a buffer with 10 bytes
i2c.writeto(0x3a, buf) # write the given buffer to the slave 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 Deep-sleep mode
--------------- ---------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment