Raspberry Pi Pinout

Pi-LITE-r

The Pi-LITEr is a fully assembled add on board for the Raspberry Pi. It has 8 ultra-bright white LED's on a board which plugs directly onto the GPIO header. It can be used alongside other I/O projects to give status indication. Lighting all 8 LEDs consumes a tiny amount of current, less than a single standard LED (which is 20ma nominal vs 14.4ma for the Pi-LITEr).

Applications

  • I/O status indicator
  • Bar graph
  • Light chaser
  • Activity indicator
  • Lighting effects

Code

  1. from gpiozero import PiLiter
  2. from time import sleep
  3. lite = PiLiter()
  4. for led in lite:
  5. led.on()
  6. sleep(0.1)
  7. led.off()
  8. lite.on()
  9. sleep(5)

GPIO Zero docs

Details

  • Made by Ciseco
  • 26 pin header
  • Needs 3v3 power
  • Uses 8 GPIO pins
  • More Information
Pi-LITE-r