File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
shared-bindings/neopixel_write Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,19 @@ STATIC void check_for_deinit(digitalio_digitalinout_obj_t *self) {
91
91
//| pin = digitalio.DigitalInOut(board.NEOPIXEL)
92
92
//| pin.direction = digitalio.Direction.OUTPUT
93
93
//| pixel_off = bytearray([0, 0, 0])
94
- //| neopixel_write.neopixel_write(pin, pixel_off)"""
94
+ //| neopixel_write.neopixel_write(pin, pixel_off)
95
+ //|
96
+ //| .. note::
97
+ //|
98
+ //| This library is typically not used by user level code.
99
+ //|
100
+ //| For more information on actually using NeoPixels, refer to the CircuitPython
101
+ //| Essentials Learn guide: https://learn.adafruit.com/circuitpython-essentials/circuitpython-neopixel
102
+ //|
103
+ //| For a much more thorough guide about using NeoPixels, refer to the Adadfruit NeoPixel Überguide:
104
+ //| https://learn.adafruit.com/adafruit-neopixel-uberguide
105
+ //|
106
+ //| """
95
107
//|
96
108
//| def neopixel_write(digitalinout: digitalio.DigitalInOut, buf: ReadableBuffer) -> None:
97
109
//| """Write buf out on the given DigitalInOut.
You can’t perform that action at this time.
0 commit comments