Skip to content

Commit

Permalink
docs: Remove reference to obsolete neopixel_write function.
Browse files Browse the repository at this point in the history
It has been replaced by machine.bitstream.

Signed-off-by: Damien George <damien@micropython.org>
  • Loading branch information
dpgeorge committed Feb 2, 2022
1 parent 872bab6 commit 326b2c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
8 changes: 2 additions & 6 deletions docs/esp32/quickref.rst
Expand Up @@ -599,18 +599,14 @@ The APA106 driver extends NeoPixel, but internally uses a different colour order
ap = APA106(pin, 8)
r, g, b = ap[0]

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.

The low-level driver uses an RMT channel by default. To configure this see
For low-level driving of a NeoPixel see `machine.bitstream`.
This low-level driver uses an RMT channel by default. To configure this see
`RMT.bitstream_channel`.

APA102 (DotStar) uses a different driver as it has an additional clock pin.
Expand Down
6 changes: 1 addition & 5 deletions docs/esp8266/quickref.rst
Expand Up @@ -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
-------------
Expand Down

0 comments on commit 326b2c7

Please sign in to comment.