summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library
diff options
context:
space:
mode:
authorTim Weber <scy@scy.name>2024-07-23 23:59:29 +0200
committerDamien George <damien@micropython.org>2024-08-01 12:04:58 +1000
commitd1685a3f5f81f20e9eea26f1274bf6171b287814 (patch)
tree43ad15b76d3faead46c8737a2e56520a0e245550 /docs/library
parent066243ea74050523e807211f208e24fac08f69fc (diff)
downloadmicropython-d1685a3f5f81f20e9eea26f1274bf6171b287814.tar.gz
micropython-d1685a3f5f81f20e9eea26f1274bf6171b287814.zip
docs/library/neopixel: Mention bitstream timing tuple.
Signed-off-by: Tim Weber <scy@scy.name>
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/neopixel.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/library/neopixel.rst b/docs/library/neopixel.rst
index edcbc9345c..b618e6012c 100644
--- a/docs/library/neopixel.rst
+++ b/docs/library/neopixel.rst
@@ -43,7 +43,8 @@ Constructors
- *pin* is a machine.Pin instance.
- *n* is the number of LEDs in the strip.
- *bpp* is 3 for RGB LEDs, and 4 for RGBW LEDs.
- - *timing* is 0 for 400KHz, and 1 for 800kHz LEDs (most are 800kHz).
+ - *timing* is 0 for 400KHz, and 1 for 800kHz LEDs (most are 800kHz). You
+ may also supply a timing tuple as accepted by `machine.bitstream()`.
Pixel access methods
--------------------