RetroPie Arcade
I built a RetroPie arcade machine. I didn't record video, but I did take a few pictures along the way.
I built a RetroPie arcade machine. I didn't record video, but I did take a few pictures along the way.
#!/usr/bin/env python3 import time import RPi.GPIO as GPIO GPIO.setmode( GPIO.BCM ) ENABLE = 1; DISABLE = 0 RED = 23; GREEN = 24; BLUE = 25 RGB = [ RED, GREEN, BLUE ] RGB2 = RGB[::-1]