File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1919from neopixel_write import neopixel_write
2020
2121try :
22- import _pixelbuf
22+ import adafruit_pixelbuf
2323except ImportError :
24- import adafruit_pypixelbuf as _pixelbuf
24+ try :
25+ import _pixelbuf as adafruit_pixelbuf
26+ except ImportError :
27+ import adafruit_pypixelbuf as adafruit_pixelbuf
2528
2629
2730__version__ = "0.0.0-auto.0"
3942"""Green Red Blue White"""
4043
4144
42- class NeoPixel (_pixelbuf .PixelBuf ):
45+ class NeoPixel (adafruit_pixelbuf .PixelBuf ):
4346 """
4447 A sequence of neopixels.
4548
Original file line number Diff line number Diff line change 33# SPDX-License-Identifier: Unlicense
44
55Adafruit-Blinka
6- adafruit-circuitpython-pypixelbuf >= 2.0.0
6+ adafruit-circuitpython-pixelbuf
Original file line number Diff line number Diff line change 3434 # Author details
3535 author = "Adafruit Industries & Damien P. George" ,
3636 author_email = "circuitpython@adafruit.com" ,
37- install_requires = ["Adafruit-Blinka" , "adafruit-circuitpython-pypixelbuf>=2.0.0 " ],
37+ install_requires = ["Adafruit-Blinka" , "adafruit-circuitpython-pixelbuf " ],
3838 # Choose your license
3939 license = "MIT" ,
4040 # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
You can’t perform that action at this time.
0 commit comments