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 17
17
import digitalio
18
18
19
19
try :
20
- import _pixelbuf
20
+ import adafruit_pixelbuf
21
21
except ImportError :
22
- import adafruit_pypixelbuf as _pixelbuf
22
+ try :
23
+ import _pixelbuf as adafruit_pixelbuf
24
+ except ImportError :
25
+ import adafruit_pypixelbuf as adafruit_pixelbuf
23
26
24
27
__version__ = "0.0.0-auto.0"
25
28
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_DotStar.git"
41
44
"""Blue Green Red"""
42
45
43
46
44
- class DotStar (_pixelbuf .PixelBuf ):
47
+ class DotStar (adafruit_pixelbuf .PixelBuf ):
45
48
"""
46
49
A sequence of dotstars.
47
50
Original file line number Diff line number Diff line change 4
4
5
5
Adafruit-Blinka
6
6
adafruit-circuitpython-busdevice
7
- adafruit-circuitpython-pypixelbuf >= 2.0.0
7
+ adafruit-circuitpython-pixelbuf
Original file line number Diff line number Diff line change 37
37
install_requires = [
38
38
"Adafruit-Blinka" ,
39
39
"adafruit-circuitpython-busdevice" ,
40
- "adafruit-circuitpython-pypixelbuf>=2.0.0 " ,
40
+ "adafruit-circuitpython-pixelbuf " ,
41
41
],
42
42
# Choose your license
43
43
license = "MIT" ,
You can’t perform that action at this time.
0 commit comments