- Code: Select all | TOGGLE FULL SIZE
numleds = 2
works?
- Code: Select all | TOGGLE FULL SIZE
numleds = 3
works?
etc....
Re: 12mm LED pixels random flickering
numleds = 2
numleds = 3
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
leds.fill((16, 0, 0))
Re: 12mm LED pixels random flickering
import board
import adafruit_ws2801
odata = board.D5
oclock = board.D6
numleds = 25
bright = 1
leds = adafruit_ws2801.WS2801(oclock, odata, numleds, brightness=bright, auto_write=False)
leds.fill((16, 0, 0))
leds.show()
Re: 12mm LED pixels random flickering
import board
import adafruit_ws2801
odata = board.D5
oclock = board.D6
numleds = 25
bright = 1
leds = adafruit_ws2801.WS2801(oclock, odata, numleds, brightness=bright, auto_write=False)
leds[21] = (16, 0, 0)
leds.show()
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
Re: 12mm LED pixels random flickering
odata = board.MOSI
oclock = board.SCK