From 5bbe9b84ae09f0d00d966410bdd35abff3bc3147 Mon Sep 17 00:00:00 2001 From: Todd Murray <39105123+tmurray222@users.noreply.github.com> Date: Mon, 26 Dec 2022 15:16:20 -0600 Subject: [PATCH] Update Project_6_Light_up_WS2812_Light_ring.py Change PIN_NUM to 0 to match the Fritzing diagram --- demo_code/Project_6_Light_up_WS2812_Light_ring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo_code/Project_6_Light_up_WS2812_Light_ring.py b/demo_code/Project_6_Light_up_WS2812_Light_ring.py index 12e7963..56d46d3 100644 --- a/demo_code/Project_6_Light_up_WS2812_Light_ring.py +++ b/demo_code/Project_6_Light_up_WS2812_Light_ring.py @@ -6,7 +6,7 @@ # Configure the number of WS2812 LEDs. NUM_LEDS = 16 -PIN_NUM = 6 +PIN_NUM = 0 brightness = 0.2 @rp2.asm_pio(sideset_init=rp2.PIO.OUT_LOW, out_shiftdir=rp2.PIO.SHIFT_LEFT, autopull=True, pull_thresh=24)