adafruit-circuitpython-neopixel 6.3.11__py3-none-any.whl → 6.3.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of adafruit-circuitpython-neopixel might be problematic. Click here for more details.
- {adafruit_circuitpython_neopixel-6.3.11.dist-info → adafruit_circuitpython_neopixel-6.3.13.dist-info}/METADATA +1 -1
- adafruit_circuitpython_neopixel-6.3.13.dist-info/RECORD +6 -0
- {adafruit_circuitpython_neopixel-6.3.11.dist-info → adafruit_circuitpython_neopixel-6.3.13.dist-info}/WHEEL +1 -1
- neopixel.py +3 -2
- adafruit_circuitpython_neopixel-6.3.11.dist-info/RECORD +0 -6
- {adafruit_circuitpython_neopixel-6.3.11.dist-info → adafruit_circuitpython_neopixel-6.3.13.dist-info}/LICENSE +0 -0
- {adafruit_circuitpython_neopixel-6.3.11.dist-info → adafruit_circuitpython_neopixel-6.3.13.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
neopixel.py,sha256=MqmolYL1peXr87M6zA68BUlCti35x7UXZApAozd6r60,5038
|
|
2
|
+
adafruit_circuitpython_neopixel-6.3.13.dist-info/LICENSE,sha256=z_ypcU6FIB47QfUALXdEHz3sbP7W5KSUy3YzmFLIl8w,1142
|
|
3
|
+
adafruit_circuitpython_neopixel-6.3.13.dist-info/METADATA,sha256=zsMpbqCfaes0i9GqSWmvyWDHgrpKiCldvDW1sxpELOc,6037
|
|
4
|
+
adafruit_circuitpython_neopixel-6.3.13.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
5
|
+
adafruit_circuitpython_neopixel-6.3.13.dist-info/top_level.txt,sha256=4Vx2uj1m66N8r0BTOEkPYDuhk-Vv8KOqOldkkJSeib4,9
|
|
6
|
+
adafruit_circuitpython_neopixel-6.3.13.dist-info/RECORD,,
|
neopixel.py
CHANGED
|
@@ -28,7 +28,7 @@ except ImportError:
|
|
|
28
28
|
pass
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
__version__ = "6.3.
|
|
31
|
+
__version__ = "6.3.13"
|
|
32
32
|
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel.git"
|
|
33
33
|
|
|
34
34
|
|
|
@@ -54,7 +54,8 @@ class NeoPixel(adafruit_pixelbuf.PixelBuf):
|
|
|
54
54
|
brightness
|
|
55
55
|
:param bool auto_write: True if the neopixels should immediately change when set. If False,
|
|
56
56
|
`show` must be called explicitly.
|
|
57
|
-
:param str pixel_order: Set the pixel color channel order.
|
|
57
|
+
:param str pixel_order: Set the pixel color channel order. The default is GRB if bpp is set
|
|
58
|
+
to 3, otherwise GRBW is used as the default.
|
|
58
59
|
|
|
59
60
|
Example for Circuit Playground Express:
|
|
60
61
|
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
neopixel.py,sha256=7tHxUeiSglcbxSjFVCyFojkwvscUB8w3kcdZqwE71GQ,4978
|
|
2
|
-
adafruit_circuitpython_neopixel-6.3.11.dist-info/LICENSE,sha256=z_ypcU6FIB47QfUALXdEHz3sbP7W5KSUy3YzmFLIl8w,1142
|
|
3
|
-
adafruit_circuitpython_neopixel-6.3.11.dist-info/METADATA,sha256=CKic8HaGuxkmgDeRH1PMdNmvGx9z-dooB3sAXE3bJVQ,6037
|
|
4
|
-
adafruit_circuitpython_neopixel-6.3.11.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
5
|
-
adafruit_circuitpython_neopixel-6.3.11.dist-info/top_level.txt,sha256=4Vx2uj1m66N8r0BTOEkPYDuhk-Vv8KOqOldkkJSeib4,9
|
|
6
|
-
adafruit_circuitpython_neopixel-6.3.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|