Skip to content

Commit 5c8372c

Browse files
committed
Changed references from neopixel to rpi_ws281x
1 parent 5f8e7bb commit 5c8372c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/SK6812_strandtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# various animations on a strip of NeoPixels.
66
import time
77

8-
from neopixel import *
8+
from rpi_ws281x import *
99

1010

1111
# LED strip configuration:

examples/SK6812_white_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# various animations on a strip of NeoPixels.
66
import time
77

8-
from neopixel import *
8+
from rpi_ws281x import *
99

1010
# LED strip configuration:
1111
LED_COUNT = 30 # Number of LED pixels.

examples/multistrandtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# various animations on a strip of NeoPixels.
66
import time
77

8-
from neopixel import *
8+
from rpi_ws281x import *
99

1010
# LED strip configuration:
1111
LED_1_COUNT = 30 # Number of LED pixels.

examples/neopixelclock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import datetime
1111
import math
1212

13-
from neopixel import *
13+
from rpi_ws281x import *
1414

1515
# LED strip configuration:
1616
LED_COUNT = 12 # Number of LED pixels.

examples/strandtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# various animations on a strip of NeoPixels.
77

88
import time
9-
from neopixel import *
9+
from rpi_ws281x import *
1010
import argparse
1111

1212
# LED strip configuration:

0 commit comments

Comments
 (0)