├── APC.ino ├── BaseCode.ino ├── BlackKnight.ino ├── DOC ├── APC_board.md ├── BlackKnight.md ├── Changes.md ├── Comet.md ├── Frames.md ├── GameCodeTutorial.md ├── Hardware │ ├── APC_FabricationFiles_SOIC │ │ ├── APC_BOM.csv │ │ ├── APC_Gerber.zip │ │ └── APC_cpl_top.csv │ ├── APC_FabricationFiles_SSOP │ │ ├── APC_BOM.csv │ │ ├── APC_Gerber.zip │ │ └── APC_cpl_top.csv │ ├── APC_LED_exp │ │ ├── APC_LED_exp-B.Cu.svg │ │ ├── APC_LED_exp.ino │ │ ├── APC_LED_exp.pdf │ │ └── LED_Gerber.zip │ ├── APC_Solenoid_exp │ │ ├── APC_Solenoid_exp-drl_map.pdf │ │ ├── APC_Solenoid_exp_Comp.pdf │ │ ├── APC_Solenoid_exp_schematic.pdf │ │ └── Solenoid_exp_Gerber.zip │ ├── APC_schematics.pdf │ ├── Assembly │ │ ├── APC_BOMnonSMD.pdf │ │ ├── APC_BOMselfSolder.pdf │ │ └── APC_components.pdf │ ├── InstallationFrames │ │ ├── System11_stl.zip │ │ ├── System11c_stl.zip │ │ ├── System7_stl.zip │ │ └── System9_stl.zip │ ├── Sys11a_Display │ │ └── Sys11_Gerber.zip │ ├── Sys7Alpha │ │ ├── AlphaDisp_Gerber.zip │ │ ├── AlphaDisp_v12-Bottom.svg │ │ ├── Credit_Gerber.zip │ │ ├── Credit_v11_-Bottom.svg │ │ ├── Credit_v11_-PTH-drl_map.pdf │ │ ├── Driver-PTH-drl_map.pdf │ │ ├── Driver.pdf │ │ ├── DriverBOM.pdf │ │ ├── Driver_Bottom_comp.pdf │ │ ├── Driver_Gerber.zip │ │ └── Driver_Top_comp.pdf │ └── Sys7_Display │ │ ├── S7Driver20p_BOM.csv │ │ ├── S7Driver_Gerber.zip │ │ ├── S7Player_Gerber.zip │ │ ├── Sys7_Driver.pdf │ │ └── Sys7_OldBoard.JPG ├── InitialTests.md ├── LEDexpBoard.md ├── LisyDebug.md ├── PICS │ ├── APC.JPG │ ├── APC_Connectors.png │ ├── APC_Pinbot.JPG │ ├── APC_Rollergames.JPG │ ├── Audacity.png │ ├── BK.jpg │ ├── BKopen.JPG │ ├── Buck.jpg │ ├── Comet.jpg │ ├── CometLED.jpg │ ├── FrameExample.JPG │ ├── FrameSys11a.JPG │ ├── FrameSys11c.JPG │ ├── FrameSys7.JPG │ ├── FrameSys7_2.jpg │ ├── FrameSys9.JPG │ ├── GI_LEDs.jpg │ ├── LED_ExpBoard.jpg │ ├── LampFix.jpg │ ├── LisyJumper.png │ ├── MiniLisy.png │ ├── PinMame.jpg │ ├── Pinbot.JPG │ ├── PlayerDisplay.png │ ├── RG_Sol.JPG │ ├── RG_Sw.JPG │ ├── Ringbuffer.png │ ├── SDadapter.JPG │ ├── SDonBoard.JPG │ ├── SolExpBoard.JPG │ ├── Sys11cKabel.jpg │ ├── Sys7DispCable.JPG │ ├── Sys7SoundCable.jpg │ ├── Sys7_Alpha.jpg │ ├── Sys7_Alpha2.jpg │ └── U1wrongPol.jpg ├── PinMame.md ├── PinMameExceptions.md ├── PinMameSound_11.md ├── PinMameSound_3_7.md ├── PinMameSound_9.md ├── PinMameSounds.md ├── Pinbot.md ├── Prepare.md ├── Problems.md ├── RunGame.md ├── SetUpBC.md ├── Settings.md ├── Software │ ├── APC_SW_reference.pdf │ ├── APC_SoundCheck │ │ ├── APC_SoundCheck.ino │ │ └── Sound.h │ ├── AudioSave.pl │ ├── AudioSaveFolder.pl │ ├── DisplayAlphaLower.pl │ ├── DisplayAlphaUpper.pl │ ├── DisplayNumLower.pl │ └── MPF │ │ └── Rollergames │ │ ├── config │ │ └── config.yaml │ │ ├── data │ │ ├── audits.yaml │ │ └── machine_vars.yaml │ │ └── modes │ │ ├── LeftOrbit │ │ └── config │ │ │ └── LeftOrbit.yaml │ │ ├── Lock1 │ │ └── config │ │ │ └── Lock1.yaml │ │ ├── attract │ │ ├── config │ │ │ └── attract.yaml │ │ └── shows │ │ │ ├── attract_display_loop.yaml │ │ │ └── attract_light_show.yaml │ │ └── base │ │ └── config │ │ └── base.yaml ├── SolExpBoard.md ├── Specialties.md ├── Sys7Alpha.md ├── Upload_SW.md ├── UsefulSWtools.md └── lisyminigames.csv ├── LICENSE ├── PinMameExceptions.ino ├── Pinbot.ino ├── README.md ├── Sound.h ├── Tutorial.ino ├── USBcontrol.ino └── _config.yml /APC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/APC.ino -------------------------------------------------------------------------------- /BaseCode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/BaseCode.ino -------------------------------------------------------------------------------- /BlackKnight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/BlackKnight.ino -------------------------------------------------------------------------------- /DOC/APC_board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/APC_board.md -------------------------------------------------------------------------------- /DOC/BlackKnight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/BlackKnight.md -------------------------------------------------------------------------------- /DOC/Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Changes.md -------------------------------------------------------------------------------- /DOC/Comet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Comet.md -------------------------------------------------------------------------------- /DOC/Frames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Frames.md -------------------------------------------------------------------------------- /DOC/GameCodeTutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/GameCodeTutorial.md -------------------------------------------------------------------------------- /DOC/Hardware/APC_FabricationFiles_SOIC/APC_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_FabricationFiles_SOIC/APC_BOM.csv -------------------------------------------------------------------------------- /DOC/Hardware/APC_FabricationFiles_SOIC/APC_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_FabricationFiles_SOIC/APC_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/APC_FabricationFiles_SOIC/APC_cpl_top.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_FabricationFiles_SOIC/APC_cpl_top.csv -------------------------------------------------------------------------------- /DOC/Hardware/APC_FabricationFiles_SSOP/APC_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_FabricationFiles_SSOP/APC_BOM.csv -------------------------------------------------------------------------------- /DOC/Hardware/APC_FabricationFiles_SSOP/APC_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_FabricationFiles_SSOP/APC_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/APC_FabricationFiles_SSOP/APC_cpl_top.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_FabricationFiles_SSOP/APC_cpl_top.csv -------------------------------------------------------------------------------- /DOC/Hardware/APC_LED_exp/APC_LED_exp-B.Cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_LED_exp/APC_LED_exp-B.Cu.svg -------------------------------------------------------------------------------- /DOC/Hardware/APC_LED_exp/APC_LED_exp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_LED_exp/APC_LED_exp.ino -------------------------------------------------------------------------------- /DOC/Hardware/APC_LED_exp/APC_LED_exp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_LED_exp/APC_LED_exp.pdf -------------------------------------------------------------------------------- /DOC/Hardware/APC_LED_exp/LED_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_LED_exp/LED_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/APC_Solenoid_exp/APC_Solenoid_exp-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_Solenoid_exp/APC_Solenoid_exp-drl_map.pdf -------------------------------------------------------------------------------- /DOC/Hardware/APC_Solenoid_exp/APC_Solenoid_exp_Comp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_Solenoid_exp/APC_Solenoid_exp_Comp.pdf -------------------------------------------------------------------------------- /DOC/Hardware/APC_Solenoid_exp/APC_Solenoid_exp_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_Solenoid_exp/APC_Solenoid_exp_schematic.pdf -------------------------------------------------------------------------------- /DOC/Hardware/APC_Solenoid_exp/Solenoid_exp_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_Solenoid_exp/Solenoid_exp_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/APC_schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/APC_schematics.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Assembly/APC_BOMnonSMD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Assembly/APC_BOMnonSMD.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Assembly/APC_BOMselfSolder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Assembly/APC_BOMselfSolder.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Assembly/APC_components.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Assembly/APC_components.pdf -------------------------------------------------------------------------------- /DOC/Hardware/InstallationFrames/System11_stl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/InstallationFrames/System11_stl.zip -------------------------------------------------------------------------------- /DOC/Hardware/InstallationFrames/System11c_stl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/InstallationFrames/System11c_stl.zip -------------------------------------------------------------------------------- /DOC/Hardware/InstallationFrames/System7_stl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/InstallationFrames/System7_stl.zip -------------------------------------------------------------------------------- /DOC/Hardware/InstallationFrames/System9_stl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/InstallationFrames/System9_stl.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys11a_Display/Sys11_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys11a_Display/Sys11_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/AlphaDisp_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/AlphaDisp_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/AlphaDisp_v12-Bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/AlphaDisp_v12-Bottom.svg -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Credit_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Credit_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Credit_v11_-Bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Credit_v11_-Bottom.svg -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Credit_v11_-PTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Credit_v11_-PTH-drl_map.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Driver-PTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Driver-PTH-drl_map.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Driver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Driver.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/DriverBOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/DriverBOM.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Driver_Bottom_comp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Driver_Bottom_comp.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Driver_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Driver_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys7Alpha/Driver_Top_comp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7Alpha/Driver_Top_comp.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7_Display/S7Driver20p_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7_Display/S7Driver20p_BOM.csv -------------------------------------------------------------------------------- /DOC/Hardware/Sys7_Display/S7Driver_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7_Display/S7Driver_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys7_Display/S7Player_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7_Display/S7Player_Gerber.zip -------------------------------------------------------------------------------- /DOC/Hardware/Sys7_Display/Sys7_Driver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7_Display/Sys7_Driver.pdf -------------------------------------------------------------------------------- /DOC/Hardware/Sys7_Display/Sys7_OldBoard.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Hardware/Sys7_Display/Sys7_OldBoard.JPG -------------------------------------------------------------------------------- /DOC/InitialTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/InitialTests.md -------------------------------------------------------------------------------- /DOC/LEDexpBoard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/LEDexpBoard.md -------------------------------------------------------------------------------- /DOC/LisyDebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/LisyDebug.md -------------------------------------------------------------------------------- /DOC/PICS/APC.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/APC.JPG -------------------------------------------------------------------------------- /DOC/PICS/APC_Connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/APC_Connectors.png -------------------------------------------------------------------------------- /DOC/PICS/APC_Pinbot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/APC_Pinbot.JPG -------------------------------------------------------------------------------- /DOC/PICS/APC_Rollergames.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/APC_Rollergames.JPG -------------------------------------------------------------------------------- /DOC/PICS/Audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Audacity.png -------------------------------------------------------------------------------- /DOC/PICS/BK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/BK.jpg -------------------------------------------------------------------------------- /DOC/PICS/BKopen.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/BKopen.JPG -------------------------------------------------------------------------------- /DOC/PICS/Buck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Buck.jpg -------------------------------------------------------------------------------- /DOC/PICS/Comet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Comet.jpg -------------------------------------------------------------------------------- /DOC/PICS/CometLED.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/CometLED.jpg -------------------------------------------------------------------------------- /DOC/PICS/FrameExample.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/FrameExample.JPG -------------------------------------------------------------------------------- /DOC/PICS/FrameSys11a.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/FrameSys11a.JPG -------------------------------------------------------------------------------- /DOC/PICS/FrameSys11c.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/FrameSys11c.JPG -------------------------------------------------------------------------------- /DOC/PICS/FrameSys7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/FrameSys7.JPG -------------------------------------------------------------------------------- /DOC/PICS/FrameSys7_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/FrameSys7_2.jpg -------------------------------------------------------------------------------- /DOC/PICS/FrameSys9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/FrameSys9.JPG -------------------------------------------------------------------------------- /DOC/PICS/GI_LEDs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/GI_LEDs.jpg -------------------------------------------------------------------------------- /DOC/PICS/LED_ExpBoard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/LED_ExpBoard.jpg -------------------------------------------------------------------------------- /DOC/PICS/LampFix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/LampFix.jpg -------------------------------------------------------------------------------- /DOC/PICS/LisyJumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/LisyJumper.png -------------------------------------------------------------------------------- /DOC/PICS/MiniLisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/MiniLisy.png -------------------------------------------------------------------------------- /DOC/PICS/PinMame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/PinMame.jpg -------------------------------------------------------------------------------- /DOC/PICS/Pinbot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Pinbot.JPG -------------------------------------------------------------------------------- /DOC/PICS/PlayerDisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/PlayerDisplay.png -------------------------------------------------------------------------------- /DOC/PICS/RG_Sol.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/RG_Sol.JPG -------------------------------------------------------------------------------- /DOC/PICS/RG_Sw.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/RG_Sw.JPG -------------------------------------------------------------------------------- /DOC/PICS/Ringbuffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Ringbuffer.png -------------------------------------------------------------------------------- /DOC/PICS/SDadapter.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/SDadapter.JPG -------------------------------------------------------------------------------- /DOC/PICS/SDonBoard.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/SDonBoard.JPG -------------------------------------------------------------------------------- /DOC/PICS/SolExpBoard.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/SolExpBoard.JPG -------------------------------------------------------------------------------- /DOC/PICS/Sys11cKabel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Sys11cKabel.jpg -------------------------------------------------------------------------------- /DOC/PICS/Sys7DispCable.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Sys7DispCable.JPG -------------------------------------------------------------------------------- /DOC/PICS/Sys7SoundCable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Sys7SoundCable.jpg -------------------------------------------------------------------------------- /DOC/PICS/Sys7_Alpha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Sys7_Alpha.jpg -------------------------------------------------------------------------------- /DOC/PICS/Sys7_Alpha2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/Sys7_Alpha2.jpg -------------------------------------------------------------------------------- /DOC/PICS/U1wrongPol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PICS/U1wrongPol.jpg -------------------------------------------------------------------------------- /DOC/PinMame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PinMame.md -------------------------------------------------------------------------------- /DOC/PinMameExceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PinMameExceptions.md -------------------------------------------------------------------------------- /DOC/PinMameSound_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PinMameSound_11.md -------------------------------------------------------------------------------- /DOC/PinMameSound_3_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PinMameSound_3_7.md -------------------------------------------------------------------------------- /DOC/PinMameSound_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PinMameSound_9.md -------------------------------------------------------------------------------- /DOC/PinMameSounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/PinMameSounds.md -------------------------------------------------------------------------------- /DOC/Pinbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Pinbot.md -------------------------------------------------------------------------------- /DOC/Prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Prepare.md -------------------------------------------------------------------------------- /DOC/Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Problems.md -------------------------------------------------------------------------------- /DOC/RunGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/RunGame.md -------------------------------------------------------------------------------- /DOC/SetUpBC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/SetUpBC.md -------------------------------------------------------------------------------- /DOC/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Settings.md -------------------------------------------------------------------------------- /DOC/Software/APC_SW_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/APC_SW_reference.pdf -------------------------------------------------------------------------------- /DOC/Software/APC_SoundCheck/APC_SoundCheck.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/APC_SoundCheck/APC_SoundCheck.ino -------------------------------------------------------------------------------- /DOC/Software/APC_SoundCheck/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/APC_SoundCheck/Sound.h -------------------------------------------------------------------------------- /DOC/Software/AudioSave.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/AudioSave.pl -------------------------------------------------------------------------------- /DOC/Software/AudioSaveFolder.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/AudioSaveFolder.pl -------------------------------------------------------------------------------- /DOC/Software/DisplayAlphaLower.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/DisplayAlphaLower.pl -------------------------------------------------------------------------------- /DOC/Software/DisplayAlphaUpper.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/DisplayAlphaUpper.pl -------------------------------------------------------------------------------- /DOC/Software/DisplayNumLower.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/DisplayNumLower.pl -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/config/config.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/data/audits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/data/audits.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/data/machine_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/data/machine_vars.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/modes/LeftOrbit/config/LeftOrbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/modes/LeftOrbit/config/LeftOrbit.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/modes/Lock1/config/Lock1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/modes/Lock1/config/Lock1.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/modes/attract/config/attract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/modes/attract/config/attract.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/modes/attract/shows/attract_display_loop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/modes/attract/shows/attract_display_loop.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/modes/attract/shows/attract_light_show.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/modes/attract/shows/attract_light_show.yaml -------------------------------------------------------------------------------- /DOC/Software/MPF/Rollergames/modes/base/config/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Software/MPF/Rollergames/modes/base/config/base.yaml -------------------------------------------------------------------------------- /DOC/SolExpBoard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/SolExpBoard.md -------------------------------------------------------------------------------- /DOC/Specialties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Specialties.md -------------------------------------------------------------------------------- /DOC/Sys7Alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Sys7Alpha.md -------------------------------------------------------------------------------- /DOC/Upload_SW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/Upload_SW.md -------------------------------------------------------------------------------- /DOC/UsefulSWtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/UsefulSWtools.md -------------------------------------------------------------------------------- /DOC/lisyminigames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/DOC/lisyminigames.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/LICENSE -------------------------------------------------------------------------------- /PinMameExceptions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/PinMameExceptions.ino -------------------------------------------------------------------------------- /Pinbot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/Pinbot.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/README.md -------------------------------------------------------------------------------- /Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/Sound.h -------------------------------------------------------------------------------- /Tutorial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/Tutorial.ino -------------------------------------------------------------------------------- /USBcontrol.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/USBcontrol.ino -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmokSolderer/APC/HEAD/_config.yml --------------------------------------------------------------------------------