From 31bb065665553ab68396d3f431cbdf1f3642e752 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Fri, 1 Nov 2019 16:26:27 -0700 Subject: [PATCH] Updated example for Feather and Raspberry Pi usage --- examples/ws2801_simpletest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/ws2801_simpletest.py b/examples/ws2801_simpletest.py index 212fef5..b699304 100644 --- a/examples/ws2801_simpletest.py +++ b/examples/ws2801_simpletest.py @@ -6,10 +6,10 @@ import board import adafruit_ws2801 -### Example for a GEMMA M0 driving 50 12mm leds -oclock = board.D2 -odata = board.D0 -numleds = 50 +### Example for a Feather M4 driving 25 12mm leds +odata = board.D5 +oclock = board.D6 +numleds = 25 bright = 1.0 leds = adafruit_ws2801.WS2801(oclock, odata, numleds, brightness=bright, auto_write=False)