fixed led bug and documented sources

This commit is contained in:
paul-loedige 2023-01-13 06:59:50 +00:00
parent 65c3f7949b
commit 79e34c3f51
2 changed files with 12 additions and 4 deletions

View File

@ -1,5 +1,12 @@
# TREx # TREx
**T**rash
**R**ecycling
**Ex**pert
T rash ## Helpful Sources
R ecycling ### LEDs
Ex pert - https://learn.adafruit.com/neopixels-on-raspberry-pi/python-usage
- https://learn.adafruit.com/neopixels-on-raspberry-pi/raspberry-pi-wiring
### RFID
- https://pimylifeup.com/raspberry-pi-rfid-rc522/

View File

@ -22,4 +22,5 @@ pixels = neopixel.NeoPixel(
pixel_pin, num_pixels, brightness=0.2, auto_write=False, pixel_order=ORDER pixel_pin, num_pixels, brightness=0.2, auto_write=False, pixel_order=ORDER
) )
pixels.fill((0,255,0)) pixels.fill((0,255,0))
pixels.show()