summaryrefslogtreecommitdiffstatshomepage
path: root/docs/esp8266
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-02-02 16:27:10 +1100
committerDamien George <damien@micropython.org>2022-02-02 16:27:10 +1100
commit326b2c79dfaf472d67e5e3fee5868e78ccc6be73 (patch)
treea95170757003e9bd5ff2a94346484953b00552c2 /docs/esp8266
parent872bab6b3c967deaeff5f0f3d0d066c3fde03802 (diff)
downloadmicropython-326b2c79dfaf472d67e5e3fee5868e78ccc6be73.tar.gz
micropython-326b2c79dfaf472d67e5e3fee5868e78ccc6be73.zip
docs: Remove reference to obsolete neopixel_write function.
It has been replaced by machine.bitstream. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'docs/esp8266')
-rw-r--r--docs/esp8266/quickref.rst6
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/esp8266/quickref.rst b/docs/esp8266/quickref.rst
index 9e64723b27..4e00a92260 100644
--- a/docs/esp8266/quickref.rst
+++ b/docs/esp8266/quickref.rst
@@ -374,17 +374,13 @@ Use the ``neopixel`` module::
np.write() # write data to all pixels
r, g, b = np[0] # get first pixel colour
-For low-level driving of a NeoPixel::
-
- import esp
- esp.neopixel_write(pin, grb_buf, is800khz)
-
.. Warning::
By default ``NeoPixel`` is configured to control the more popular *800kHz*
units. It is possible to use alternative timing to control other (typically
400kHz) devices by passing ``timing=0`` when constructing the
``NeoPixel`` object.
+For low-level driving of a NeoPixel see `machine.bitstream`.
APA102 driver
-------------