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
**T**rash
**R**ecycling
**Ex**pert
T rash
R ecycling
Ex pert
## Helpful Sources
### LEDs
- 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

@ -23,3 +23,4 @@ pixels = neopixel.NeoPixel(
)
pixels.fill((0,255,0))
pixels.show()