Picade Todo
- key mappings
- look up and label default mappings
{ KEY_UP_ARROW, UP },
{ KEY_DOWN_ARROW, DOWN },
{ KEY_LEFT_ARROW, LEFT },
{ KEY_RIGHT_ARROW, RIGHT },
{ KEY_LEFT_CTRL, BTN_1 },
{ KEY_LEFT_ALT, BTN_2 },
{ ' ', BTN_3 },
{ KEY_LEFT_SHIFT, BTN_4 },
{ 'z', BTN_5 },
{ 'x', BTN_6 },
{ 's', START },
{ 'c', COIN },
{ KEY_RETURN, ENTER },
{ KEY_ESC, ESCAPE },
/* Change these lines to set key bindings for VOL_UP and VOL_DN */
{ 'u', VOL_UP },
{ 'd', VOL_DN },
- Properly secure pi to case
- Properly configure MAME
- SSH to picade
- Add roms to picade
- Add a external port to plugin controllers
- scrapping games How?
- netplay
- setup battery power
- Change the art work
- Properly install power button
- minecraft server
- Install Java and how to run minecraft on PC
- Add a HD for PS1 games sata adapter
Wiring...
GPIO --- 220Ohm --- +LED- ---> GND
Python
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(25, GPIO.OUT)
GPIO.output(25, 1)
GPIO.cleanup()
GPIO.setup(22, GPIO.IN)
GPIO.input(22) == bool
ASCIART
+--- 10 kOhm --- GND
|
|
| _-v
GPIO -- 1 kOhm --+---+ +------ 3.3V
GND -- 10K Ohm --+---+ SW +--- 5V
|
GPIO----------------+