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

from gpiozero import PiLiter
from time import sleep

lite = PiLiter()

for led in lite:
    led.on()
    sleep(0.1)
    led.off()

lite.on()
sleep(5)

GPIO Zero docs

Details

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