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

详情

  • 由 Ciseco 制造
  • 26 个排针
  • 需要 3v3 供电
  • 使用了 8 个 GPIO 引脚
  • 更多信息
Pi-LITE-r