Skip to content

Commit 21db261

Browse files
committed
Fix removed variables.
1 parent 48aef5c commit 21db261

File tree

1 file changed

+4
-4
lines changed
  • Circuit_Playground_Bluefruit_NeoPixel_Controller

1 file changed

+4
-4
lines changed

Circuit_Playground_Bluefruit_NeoPixel_Controller/Receiver.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
sync=True
5353
),
5454
AnimationGroup(
55-
Comet(cpb.pixels, COMET_SPEED, COMET_INITIAL_COLOR, tail_length=CPB_COMET_TAIL_LENGTH,
55+
Comet(cpb.pixels, COMET_SPEED, color.MAGENTA, tail_length=CPB_COMET_TAIL_LENGTH,
5656
bounce=CPB_COMET_BOUNCE),
57-
Comet(strip_pixels, COMET_SPEED, COMET_INITIAL_COLOR, tail_length=STRIP_COMET_TAIL_LENGTH,
57+
Comet(strip_pixels, COMET_SPEED, color.MAGENTA, tail_length=STRIP_COMET_TAIL_LENGTH,
5858
bounce=STRIP_COMET_BOUNCE)
5959
),
6060
AnimationGroup(
61-
Sparkle(cpb.pixels, SPARKLE_SPEED, SPARKLE_INITIAL_COLOR),
62-
Sparkle(strip_pixels, SPARKLE_SPEED, SPARKLE_INITIAL_COLOR)
61+
Sparkle(cpb.pixels, SPARKLE_SPEED, color.PURPLE),
62+
Sparkle(strip_pixels, SPARKLE_SPEED, color.PURPLE)
6363
),
6464
)
6565

0 commit comments

Comments
 (0)