Difference between revisions of "Hardware Control Systems"

From PinWiki
Jump to navigation Jump to search
(→‎Links: page cleanup)
(The P-ROC will now be hosted on the pinball makers wiki)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Introduction=
+
See: http://pinballmakers.com/wiki/index.php/P-ROC_Main_Page
Starting in the early 2000's, pinball control systems have been released.  These systems enable users (and manufacturers) to modify existing games or create new machines.  Custom machines based on these control systems are featured at most pinball shows and conventions, and new pinball companies are using them commercially to run their games.
 
 
 
Manufacturers of control systems include:
 
 
 
* [http://www.pinballcontrollers.com/ Multimorphic], producing the [[P-ROC|P-ROC and P3-ROC systems]]
 
* [http://www.fastpinball.com/ FAST Pinball]
 
* Ben Heck, who has developed the [http://www.benheck.com/pinHeck_wiki/index.php/Main_Page Pinheck board] which is used by Spooky Pinball LLC in America's Most Haunted
 
* [http://www.millisoft.de/catalog/product_info.php?cPath=22&products_id=32 milliSoft], who offers an all-in-one board
 
 
 
 
 
=P-ROC/P3-ROC=
 
[http://www.pinballcontrollers.com/ Official Website]
 
 
 
[[File:Proc-plated-threequarter-160.jpg|thumb|left|250px|]]<br clear=all>
 
 
 
 
 
The P-ROC / P3-ROC (and their related driver boards) are a set of pinball machine controller boards that allow a computer running custom software to control a pinball machine. The P-ROC board is an intelligent interface board that controls the low level pinball machine circuitry according to instructions from the computer running the game code.
 
 
 
In most cases, a [[Single_Board_Computers|single-board computer]] works quite well as the computer.  The P-ROC board can be used to either (1) replace the CPU board on existing machines (WPC-x, Stern Whitestar, or Stern S.A.M. systems) so they can run custom software, or (2) control a new pinball machine, whereas a P3-ROC can be used only to control new machines.
 
 
 
{| class="wikitable" style="text-align: center;"
 
!colspan="10"|P-ROC / P3-ROC Feature Support
 
|-
 
|
 
|WPC Driver Boards
 
|Stern Driver Boards
 
|[http://www.pinballcontrollers.com/index.php/products/driver-boards PDB (P-ROC Driver Boards)]
 
|Switch Matrix
 
|[http://www.pinballcontrollers.com/index.php/products/sw-16 Serial Switch Boards]
 
|DMD Support
 
|Aux Port
 
|I2C
 
|GPIOs
 
|-
 
|[http://www.pinballcontrollers.com/index.php/products/p-roc P-ROC]
 
|Y
 
|Y
 
|Y
 
|Y
 
|N
 
|Y
 
|Y (WPC compatible)
 
|N
 
|N
 
|-
 
|[http://www.pinballcontrollers.com/index.php/products/p3-roc P3-ROC]
 
|N
 
|N
 
|Y
 
|N
 
|Y
 
|N
 
|Y (Custom)
 
|Y
 
|Y
 
|}
 
 
 
 
 
===Functionality===
 
A P-ROC combined with a PC or embedded microcontroller provides functionality equivalent to a CPU board in a pinball machine.  Software runs on the PC or microcontroller and communicates with the pinball machine's features through the P-ROC via USB.
 
 
 
The P-ROC is essentially an [http://en.wikipedia.org/wiki/Field-programmable_gate_array FPGA (Field Programmable Gate Array)] surrounded by some support logic and a bunch of connectors.  The FPGA contains custom logic enabling it to perform tasks including:
 
 
 
* [[#USB_Control | Communicating with a PC over USB]]
 
* [[#Switch_Control | Scanning switches for switch events]] (Direct, Matrixed, and Burst)
 
* [[#Driver_Control | Driving coils, lamps, motors, etc]] (Direct and Multiplexed)
 
* [[#DMD_Control | Driving a Dot Matrix Display]] (DMD)
 
 
 
Note that the P-ROC does not handle audio. Instead audio is typically processed by the computer or microcontroller which is running the game software connected to the P-ROC.
 
 
 
The support logic and connectors enable the P-ROC to be used as a controller in custom homebrew pinball machines or as a CPU board replacement in the following generations of machines:
 
 
 
* WPC
 
* WPC-95
 
* Stern Whitestar
 
* Stern S.A.M.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
====USB Control====
 
The power of a personal computer can be leveraged to create pinball machine software with simple or complex rulesets, video sequences, and audio effects.  The PC's audio output can be connected directly to a pinball machine, but interfacing to the machine's switch and driver circuits and to display elements such as a dot matrix display requires an interface card such as a P-ROC.
 
 
 
===== Hardware Implementation =====
 
 
 
The P-ROC has a type B USB connector allowing it to connect directly to a PC using a standard USB cable.  The USB signalling protocol is handled by an [http://www.ftdichip.com/ FTDI] [http://www.ftdichip.com/Products/FT245R.htm FT245RL] chip on the P-ROC.  This chip buffers incoming data destined for the FPGA and outgoing data being sent back to the PC.  For more information about the FT245RL chip, refer to its [http://www.ftdichip.com/Documents/DataSheets/DS_FT245R_V206.pdf datasheet].
 
 
 
===== USB Drivers =====
 
 
 
[http://www.ftdichip.com/ FTDI] provides a free, closed-source driver for the FT245RL chip called [http://www.ftdichip.com/Drivers/D2XX.htm D2XX].  P-ROCs have been verified to work successfully with Windows based systems using D2XX.  Attempts to communicate with a P-ROC in Mac OS using D2XX have been unsuccessful due to an apparent bug in the Mac OS D2XX implementation.
 
 
 
A free, open-source driver called [http://www.intra2net.com/en/developer/libftdi/ libFTDI] is also available.  P-ROCs have been verified to work successfully in Linux and Mac based systems using libFTDi.
 
 
 
===== USB Bandwidth =====
 
 
 
The P-ROC can send/receive approximately 1 MB of data each second, which is more than enough to exchange any information needed to control a pinball machine, including DMD animation information at frame rates exceeding 60 fps.
 
 
 
====Switch Control====
 
The P-ROC can automatically scan direct, matrix, and burst switches and notify software and/or change the state of a driver when a switch changes states.  This allows software to spend its cycles processing game rules rather than implementing very high speed switch scan loops.
 
 
 
===== Direct and Matrix Switches =====
 
 
 
The P-ROC has 32 direct switch inputs, and it has 10 switch column drivers and 16 switch row inputs creating a 160 switch switch matrix.  The first 8 switch column drivers have dedicated outputs driven through a ULN2803 transistor array, and the other 2 are driven on an 8-bit multiplexed data bus (for WPC machines to use 8-driver boards).  The 16 switch row inputs are dedicated inputs, each going through an LM339 comparator that compares the row's voltage against a 2.5V or 6V reference voltage.
 
 
 
Every x milliseconds, the P-ROC goes through a scanning loop during which it first checks all of the direct inputs.  It then iterates through the matrix by driving a column and checking the row inputs, then driving the next column and checking the row inputs, etc.  The number of milliseconds between each full scanning loop is programmable down to 1 millisecond.
 
 
 
===== Burst Switches =====
 
 
 
The P-ROC has 32 burst switch outputs (each with two outputs) and 64 burst switch inputs.  These are provided for switches, such as long range infrared emitter/detector pairs, that require bursts of activity to function correctly.  The timing parameters of the burst activity are fully programmable (globally) so that it can work with many types of switches.  The programmable timing parameters determine how long it takes to cycle through all of the burst switches.
 
 
 
===== Switch Events =====
 
 
 
While scanning the switches, the P-ROC recognizes when the state of a switch changes.  States include:
 
 
 
* Open, non-debounced
 
* Open, debounced
 
* Closed, non-debounced
 
* Closed, debounced
 
 
 
The P-ROC can be programmed to perform specific actions for each state change for each of the 256 switches.  Actions include:
 
 
 
* Notify software
 
* Change a driver's configuration
 
 
 
For increased flexibility, the P-ROC can chain multiple actions together so that more than one action can occur as a result of a switch's state changing.  For instance, switch 3 can cause drivers 5, 10, and 20 to turn on, drivers 30-35 to be turned off, and software to be notified when its state becomes closed, debounced.  (Crazy example, but possible).  It can also have a different set of actions occur when its state becomes one of the other 3 states, such as open, debounced.
 
 
 
In typical applications, users will likely want to simply notify the host of all debounced switch events (for scoring and rule processing).  For situations requiring immediate driver reactions, such as pop bumpers popping in response to a pop bumper switch closing, a driver rule might also be used.
 
 
 
====Driver Control====
 
The P-ROC can individually control 216 driver outputs.  Driver outputs are typically used to control coils, lamps/leds, motors, etc.  There are dedicated output pins for 32 of the 216, and the other 184 are driven through a multiplexed bus that is compatible with WPC, WPC95, Stern Whitestar, and Stern S.A.M. power driver boards.
 
 
 
===== Multiplexed Bus =====
 
 
 
The Multiplexed Bus contains:
 
 
 
* 8 data bits
 
* 9 enable bits
 
 
 
The functionality of the data and enable bits is controlled by a large set of configuration registers.  For detailed information about the registers, refer to the P-ROC FPGA Specifications on the [http://www.pinballcontrollers.com/index.php?option=com_content&view=article&id=50&Itemid=56 P-ROC Documentation Page].
 
 
 
===== Timing =====
 
 
 
Every millisecond, the P-ROC checks to see if the internally programmed state of a driver has changed (either by a software write or by a switch event action).  When the internally programmed state of a driver with a dedicated output pin changes, the new state is reflected immediately on the pin.  Circuits connected to the multiplexed bus won't see driver changes immediately.  Rather, they will see the change whenever the bus logic services the changed driver.  How long that can take is determined by the configuration registers.
 
 
 
===== Driver Modes =====
 
 
 
The P-ROC can automatically control drivers in certain modes so that software doesn't need to programmatically turn on/off things like blinking lights or repeatedly pulsing coils.  The following modes can be used:
 
 
 
====== Solid ======
 
 
 
This is the simplest mode.  Drivers in this mode are either on or off, and they remain in that state until reconfigured.
 
 
 
Note - Drivers connected to high current coil circuits should NEVER be turned on solidly.  They should be driven with a timer (see the timed mode below).
 
 
 
====== Timed ======
 
 
 
A timed driver is turned on for a specified number of milliseconds, up to 255.  When the millisecond timer expires, the driver is turned off.
 
 
 
This mode is recommended for high current coil circuits that need to be pulsed for short periods of time.
 
 
 
====== Schedule ======
 
 
 
A scheduled driver turns on or off automatically according to a 1 second schedule.  The schedule contains 32 timeslots, each lasting for 31 microseconds.  When the timer enters an active timeslot, the driver turns on.  When the timer enters an inactive timeslot, the driver turns off.
 
 
 
Note - The timed mode can also be used for scheduled drivers.  When a schedule driver is configured with a timer, the timer determines how many seconds the schedule is repeated.
 
 
 
Scheduled drivers are recommended for blinking lamps/flashers.  Various light effects can be created by assigning different schedules to a set of lamp drivers.
 
 
 
====== Patter ======
 
 
 
Patter (named after the phrase pitter-patter) drivers repeatedly turn on for a certain number of milliseconds and then off for a certain number of milliseconds.
 
 
 
Note - The timed mode can also be used for patter drivers.  When a patter driver is configured with a timer, the driver turns on for the number of milliseconds specified by the timer.  When the timer expires, the patter begins and repeats indefinitely.
 
 
 
This mode is provided for fine-grained control of pulsed coils, such as Stern flipper coils that don't have hold circuits.  An example configuration would be to combine the Timed and Patter modes to pulse the coil and then patter it when the flipper button is pressed.  The driver could then be turned off when the flipper button is released.
 
 
 
====DMD Control====
 
The P-ROC is capable of directly driving a Dot Matrix Display (DMD) through a 14-bit ribbon cable.  Supported DMD features include:
 
 
 
* Programmable resolution, including 128x32.
 
* Up to 16 brightness levels (colors)
 
* 48 kb frame buffer storage (3 full frames @ 128x32)
 
* Frame events (for software synchronization)
 
 
 
Note: The P-ROC does not supply the electrical power for the DMD.  The DMD must be powered by other circuits/supplies. If you're using the P-ROC to replace the CPU board in an existing machine, then all you need to do is hook up the 14-pin ribbon cable since the existing DMD gets its power from the existing machine's power supply. If you're building a new machine, you'll need to power the DMD from your power supply in addition to making the 14-pin ribbon connection to your P-ROC.
 
 
 
===Getting Started===
 
====Hardware Installation====
 
===== Hardware Mounting =====
 
 
 
The P-ROC should be mounted into a pinball machine so that the board doesn't flex much when cables are attached or removed.  P-ROC mounting plates are available for existing machines including: WPC, WPC-95, Stern Whitestar, and Stern SAM.  Generally, each P-ROC is sold with the customer's choice of a mounting plate.  Additional plates can be purchased from [[pinballcontrollers.com]].  The mounting plates were designed to mount in the same position as each machine's existing CPU board, which needs to be removed when using a P-ROC.
 
 
 
When mounting a P-ROC into a custom cabinet, either make use of one of the pre-designed mounting plates, or secure the P-ROC board using all 6 mounting holes on the circuit board.  Not properly mounting the board increases the chances of damaging the board when attaching or removing cables.  Such damage is not covered by any warranty.
 
 
 
===== Cabling =====
 
 
 
When using a P-ROC in a custom machine, any or all of the connectors can be used.  Refer to the Board Specifications on the [http://www.pinballcontrollers.com/index.php?option=com_content&view=article&id=50&Itemid=56 P-ROC Documentation Page] for a description of the available connectors and their functionality.
 
 
 
When using the P-ROC in an existing machine, only some of the connectors should be used.  The P-ROC Connector Mappings document on the [http://www.pinballcontrollers.com/index.php?option=com_content&view=article&id=50&Itemid=56 P-ROC Documentation Page] identifies which connectors should be used in each of the 4 supported existing pinball machine platforms.
 
 
 
===== Hardware Switches =====
 
 
 
The P-ROC has 4 DIP switches of which only 3 are currently used: 
 
 
 
* '''DIP switch 1''' sets the polarity of the 'clear' signal used to disable driver circuits on connected power/driver boards.
 
 
 
OFF : 'clear' goes high (logic 1) to disable drivers.  Used with WPC and WPC-95 machines.  Typically also used with PDB driver boards, even though the switch position should not matter.
 
 
 
ON  : 'clear' goes low (logic 0) to disable drivers.  Used with Stern Whitestar/SAM machines.
 
 
 
'''Important: Before applying power to a machine with an installed P-ROC, ensure DIP switch 1 is set as desired:'''
 
 
 
* '''DIP switch 2''' is used to enable USB control or embedded control.
 
 
 
OFF : USB control
 
 
 
ON  : Embedded control
 
 
 
* '''DIP switch 3''' determines the default operation of the DMD pins.
 
 
 
OFF : DMD pins carry the DMD signals.
 
 
 
ON  : DMD pins carry output driver enables 9 through 12, as follows:
 
 
 
{| class="wikitable" style="text-align: center;"
 
!colspan="2"|P-ROC DMD Pin mapping
 
|-
 
|DMD Signal
 
|Output Driver Enable
 
|-
 
|rdata
 
|9
 
|-
 
|rclk
 
|10
 
|-
 
|latch
 
|11
 
|-
 
|sdata
 
|12
 
|}
 
 
 
====Connecting Switches====
 
The P-ROC has a bunch of comparator circuits, similar to WPC and Stern CPU boards, to detect when your machine's switches change state.  To make it easy on people who want to use their P-ROC in an existing WPC or Stern machine, the P-ROC has practically the same set of switch connectors that WPC and Stern CPU boards have.  When replacing one of those boards, it's therefore a simple matter to plug all of the existing cables directly onto the P-ROC.  Refer to the [http://www.pinballcontrollers.com/index.php/products/p-roc/documentation P-ROC Connector Mappings] document for a mapping of WPC and Stern switch connectors to P-ROC switch connectors.
 
 
 
 
 
===== Dedicated and Matrixed Switches =====
 
 
 
The P-ROC has support for the following dedicated and matrixed switch configurations:
 
 
 
* 32 dedicated switch inputs and an 8x8 switch matrix (96 switches total)
 
* 24 dedicated switch inputs and an 8x16 switch matrix (152 switches total)
 
 
 
If you're using the P-ROC in a machine with custom wiring, you're free to connect your switch wires to any of the available switch connectors on the P-ROC.  Some of the connectors are 0.100" pitch (WPC-style), and others are 0.156" (Stern-style).  Refer to the [http://www.pinballcontrollers.com/index.php/products/p-roc/documentation P-ROC Board Specifications] for a detailed list of all of the switch connectors on the board.
 
 
 
The dedicated and matrixed switch inputs on the P-ROC use a voltage reference that comes from the power cable you use to power the P-ROC.  In a WPC machine, the power cable provides 12V to the switch logic, and the comparator reference is 6V.  In a Stern machine, the power cable provides 5V to the switch logic, and the comparator reference is 2.5V.  When using the 4-pin ATX power supply style power connector, it works like a WPC machine with 12V on the switch logic and a comparator reference of 6V.
 
 
 
 
 
====== Connecting Dedicated Switches ======
 
 
 
All of the dedicated switch inputs on the P-ROC have pull-up resistors to the switch power rail (12V or 5V as mentioned above).  Therefore, when a switch input is unused, the P-ROC will pull the line up to the switch power rail.
 
 
 
======= Mechanical Switches =======
 
 
 
When wiring dedicated mechanical switches on your machine, make sure to wire them between the desired switch input and ground.  When the switch is open, the corresponding pull-up resistor on the P-ROC will pull the line high.  When the switch is closed, a connection to ground is made, and the P-ROC will see the line go low and detect the closing switch event.  When the switch is opened again, the P-ROC will see the line go high and detect the opening switch event.
 
 
 
[[File:P-ROC_dedicated_switch.jpg|thumb|left|250px]]<br clear=all>
 
 
 
======= Opto Switches =======
 
 
 
Dedicated opto switches consist of an IR transmitter and a IR phototransistor (receiver).  The transmitter gets connected directly to power through a current limiting resistor (resistor value depends on the power level and the specific type of IR transmitter you use) so that it always transmits.  The phototransistor works similarly to a mechanical switch except reversed.  The circuit is pulled high on the P-ROC when not enough light is detected by the phototransistor (ie. when a ball is blocking the light) and driven low when the light is not blocked.
 
 
 
 
 
[[File:Dedicated_opto_switch.jpg|thumb|left|250px]]<br clear=all>
 
 
 
 
 
====== Connecting Matrixed Switches ======
 
 
 
The P-ROC supports switch matrixes up to 8x16.  When in use, the matrix functionality automatically scans the matrix, capturing switch events on each switch in the matrix as they occur.
 
 
 
The topology of the matrix is 8 outputs (columns) and 16 inputs (rows).  Refer to the [http://www.pinballcontrollers.com/index.php/products/p-roc/documentation P-ROC Board Specifications] for a detailed listing of the connectors to use when wiring up your matrix.  To use the full 8x16 matrix, you'll need to use the 0.156" pitch connectors.  If you only need an 8x8 matrix, you can use either the 0.100" or 0.156" pitch connectors.
 
 
 
When the P-ROC is scanning the matrix, it will drive each matrix output low, one at a time, while capturing the states on each of the inputs.  By iterating through each output, it can capture the states of each and every switch on the matrix in a very short amount of time, configurable down to 1 millisecond.
 
 
 
All switches on your matrix need to have a 1N4004 or equivalent diode in series with the switch.  It doesn't matter which side of the switch the diode is on.  Just make sure to orient the diode so the bar end points towards the P-ROC matrix output.
 
 
 
======= Mechanical Switches =======
 
 
 
 
 
[[File: P-ROC_matrix_switch_and_diode.jpg|thumb|left|400px]]<br clear=all>
 
 
 
======= Opto Switches =======
 
 
 
Unlike mechanical switches, which can be used on a matrix input in the same fashion as a dedicated input (with the addition of a diode), opto switches require some more circuitry.  There are a few reasons for this, but the primary reason is that opto circuits are constantly active.  In other words, the IR transmitter is constantly sending light, and the phototransistor is constantly trying to detect light.  This means the output of the phototransistor is always active.  Therefore, if it shares a P-ROC matrix input with other switches, it will corrupt the detected states of the other switches.
 
 
 
This issue is resolved, as shown in the diagram below, by adding a comparator circuit that compares the output of a phototransistor to a P-ROC matrix output reference.  The P-ROC matrix output reference needs to be generated by even more circuitry (not shown) so that the phototransistors output is only relevant when the P-ROC matrix output is active.  In other words, when the P-ROC matrix output is active (driven low), the phototransistor's output determines whether the P-ROC matrix input is driven low or pulled high.  When the P-ROC matrix output is inactive, the phototransistor's output will result in the P-ROC matrix input being pulled high, regardless of the amount of light detected.
 
 
 
 
 
[[File: Matrix_opto_switch.jpg|thumb|left|400px]]<br clear=all>
 
 
 
The P-ROC matrix output reference is commonly created with another comparator circuit that compares the P-ROC matrix output to a fixed voltage that's typically some percentage of the switch power.
 
 
 
Instead of wiring all of these comparator circuits for each and every opto you want to use on the switch matrix, it would be much simpler to use an existing opto board.  A common opto board used in many existing pinball machines for the exact same purpose is:
 
 
 
A-15576    : 7-Opto Switch Board
 
 
 
This board is available from many pinball component suppliers and contains everything you should need except the IR transmitters and phototransistors, which incidentally are also available from most suppliers [http://www.pinballlife.com/index.php?p=product&id=964&parent=0 on PCBs] and as standalone components ([http://www.pinballlife.com/index.php?p=product&id=170&parent=0 transmitters], [http://www.pinballlife.com/index.php?p=product&id=171&parent=0 receivers]).
 
 
 
 
 
 
 
====Software Development====
 
 
 
=====Installation/Build Instructions=====
 
 
 
Build instructions are available for:
 
 
 
* [[Windows build instructions|Windows (MinGW)]]
 
* [[Windows build instructions VS|Windows (Visual Studio)]]
 
* [[Linux build instructions|Linux]]
 
* [[Mac build instructions|Mac]]
 
 
 
=====Sample Game Files=====
 
======Custom (PDB)======
 
* Example Machine Config File (YAML) for P-ROC (sample_pdb.yaml)
 
[https://github.com/preble/proc-shared/blob/dev/config/sample_pdb.yaml sample_pdb.yaml]
 
 
 
* Example Machine Config File (YAML) for P3-ROC (simple.yaml)
 
# P-ROC Game Description file a sample machine using PDBs (PinballControllers.com Driver Boards) and Serial Switch Boards
 
PRGame:
 
    machineType: pdb
 
    numBalls: 4
 
PRFlippers:
 
    - flipperLwR
 
    - flipperLwL
 
PRBumpers:
 
    - slingl
 
    - slingr
 
PRSwitches:
 
    # **** Format ****
 
    # name:
 
    #  number: <number>
 
    #  type: <type>
 
    #
 
    #  <number> can be: x (x = 16 * Switch board addr + output number)
 
    #  <type> can be: 'NO' (normally open.  This is the default; so no need to use this)
 
    #                  'NC' (normally closed.  Common for optos)
 
 
 
    # flippers shown below are examples of dedicated switches
 
    flipperLwR:
 
        number: 0
 
 
    flipperLwL:
 
        number: 1
 
 
    # slings shown below are examples of matrix switches
 
    slingl:
 
        number: 2
 
 
    slingr:
 
        number: 3
 
 
# Coil numbering format: Ax-By-z:
 
 
# Capital letters are required, lower case letters represent the numbers:
 
# x : Board address (0-7)
 
# y : Bank address (0 for A, 1 for B)
 
# z : Output number (0-7)
 
 
PRCoils:
 
    flipperLwLMain:
 
        number: A0-B1-0
 
    flipperLwLHold:
 
        number: A0-B1-1
 
    flipperLwRMain:
 
        number: A0-B1-2
 
    flipperLwRHold:
 
        number: A0-B1-3
 
    slingl:
 
        number: A0-B1-4
 
    slingr:
 
        number: A0-B1-5
 
 
 
# Lamp numbering format: C-Ax-By-z:R-Am-Bn-p:
 
 
 
# Capital letters are required, lower case letters represent the numbers:
 
# For Columns (Source circuits - represented by the 'C')
 
# x : Column board address (0-7)
 
# y : Column bank address (0 for A, 1 for B)
 
# z : Output number (0-7)
 
 
# For Rows (Sink circuits - represented by the 'R')
 
# m : Row board address (0-7)
 
# n : Row bank address (0 for A, 1 for B)
 
# p : Output number (0-7)
 
 
 
PRLamps:
 
    testLamp:
 
        number: C-A1-B0-0:R-A1-B1-0
 
    VUK_right_b:
 
        number: C-A1-B0-0:R-A1-B1-1
 
    VUK_right_g:
 
        number: C-A1-B0-0:R-A1-B1-2
 
    VUK_left_g:
 
        number: C-A1-B0-0:R-A1-B1-3
 
    VUK_left_b:
 
        number: C-A1-B0-0:R-A1-B1-4
 
    VUK_left_r:
 
        number: C-A1-B0-0:R-A1-B1-5
 
 
 
PRDriverGlobals:
 
    lamp_matrix_strobe_time: 200
 
    use_watchdog: True
 
    watchdog_time: 1000
 
 
 
* Simple Game Script (PDB)
 
import procgame.game
 
import pinproc
 
game = procgame.game.GameController(machine_type=pinproc.MachineTypePDB)
 
game.load_config('simple.yaml')
 
game.enable_flippers(enable=True)
 
game.lamps.testLamp.schedule(schedule=0x00ff00ff, cycle_seconds=0, now=False)
 
game.run_loop()
 
 
 
====== WPC ======
 
* Example Machine Config File (YAML) for WPC (JD.yaml)
 
[https://github.com/preble/proc-shared/blob/dev/config/JD.yaml JD.yaml]
 
 
 
* Simple Game Script (WPC)
 
import procgame.game
 
import pinproc
 
game = procgame.game.GameController(machine_type=pinproc.MachineTypeWPC)
 
game.load_config('simple.yaml')
 
game.enable_flippers(enable=True)
 
game.lamps.testLamp.schedule(schedule=0x00ff00ff, cycle_seconds=0, now=False)
 
game.run_loop()
 
 
 
* Simple Game Script (WPC95)
 
import procgame.game
 
import pinproc
 
game = procgame.game.GameController(machine_type=pinproc.MachineTypeWPC95)
 
game.load_config('simple.yaml')
 
game.enable_flippers(enable=True)
 
game.lamps.testLamp.schedule(schedule=0x00ff00ff, cycle_seconds=0, now=False)
 
game.run_loop()
 
 
 
* Simple Game Script (WPCAlphanumeric)
 
import procgame.game
 
import pinproc
 
game = procgame.game.GameController(machine_type=pinproc.MachineTypeWPCAlphanumeric)
 
game.load_config('simple.yaml')
 
game.enable_flippers(enable=True)
 
game.lamps.testLamp.schedule(schedule=0x00ff00ff, cycle_seconds=0, now=False)
 
game.run_loop()
 
 
 
=======Stern=======
 
* Example Machine Config File (YAML) for Stern Whitestar (LOTR.yaml)
 
[https://github.com/preble/proc-shared/blob/dev/config/LOTR.yaml LOTR.yaml]
 
 
 
* Example Machine Config File (YAML) for Stern SAM (POTC.yaml)
 
[https://github.com/preble/proc-shared/blob/dev/config/POTC.yaml POTC.yaml]
 
 
 
* Simple Game Script (Stern Whitestar)
 
import procgame.game
 
import pinproc
 
game = procgame.game.GameController(machine_type=pinproc.MachineTypeSternWhitestar)
 
game.load_config('simple.yaml')
 
game.enable_flippers(enable=True)
 
game.lamps.testLamp.schedule(schedule=0x00ff00ff, cycle_seconds=0, now=False)
 
game.run_loop()
 
 
 
* Simple Game Script (Stern SAM)
 
import procgame.game
 
import pinproc
 
game = procgame.game.GameController(machine_type=pinproc.MachineTypeSternSAM)
 
game.load_config('simple.yaml')
 
game.enable_flippers(enable=True)
 
game.lamps.testLamp.schedule(schedule=0x00ff00ff, cycle_seconds=0, now=False)
 
game.run_loop()
 
 
 
===== Game Development Resources =====
 
 
 
* Fonts (.dmd format)
 
 
 
 
 
===Driver Boards===
 
====Functionality====
 
====Hardware installation====
 
====Controlling Devices====
 
=====Controlling Flippers=====
 
=====Controlling Lamp Matrixes=====
 
 
 
===Projects===
 
* JD_rules - Custom JD Software
 
* Single Board Computers
 
* Pyprocgame_vp, pyprocgame, Visual Pinball
 
 
 
=== Additional resources ===
 
* Modifying a WPC-95 board for Audio Input
 
* [http://www.pinballcontrollers.com PinballControllers.com website]
 
* [http://www.pinballcontrollers.com/forum PinballControllers.com discussion forums]
 
 
 
=FAST=
 
[http://fastpinball.com/ Official Website]
 
 
 
 
 
=Single Board Computers=
 
A single board computer is a complete computer built on a single circuit board[http://en.wikipedia.org/wiki/Single-board_computer].
 
 
 
Some people in the P-ROC community are investigating various single board computers for use as an alternative to a full PC or laptop (as the host from which to control the P-ROC hardware).
 
 
 
== Overview ==
 
 
 
{| border="1" cellspacing="1" cellpadding="2"
 
|-
 
! Solution
 
! Cost
 
! CPU
 
! RAM
 
! Storage
 
! AV
 
! Other
 
|-
 
| [[#Beagleboard|Beagleboard]]
 
| 150 USD
 
| 600MHz
 
| 128MB
 
| 256MB Flash, SD/MMC
 
| Audio I/O, DVI-D + S-video out
 
| USB OTG
 
|-
 
| [[#Chumby|Chumby Hacker Baord]]
 
| 90 USD
 
| 454MHz
 
| 64MB
 
| 512MB uSD
 
| Composite video out, audio I/O
 
| 3 USB
 
|-
 
| [[#ODROID|ODROID U3]]
 
| 75 USD
 
| 1.7GHz quad core
 
| 2GB
 
| 128MB Flash
 
| HDMI, Audio I/O
 
| USB host, USB OTG, Ethernet, GPIO, I2C
 
|-
 
| [[#Raspberry Pi|Raspberry Pi]]
 
| 40 USD
 
| 700MHz
 
| 512MB
 
| SD Card Slot
 
| HDMI out, Audio I/O
 
| USB host, USB OTG, Ethernet
 
|}
 
 
 
== Beagleboard ==
 
 
 
=== Links ===
 
 
 
* [http://beagleboard.org/ beagleboard.org]
 
* [[Beagleboard P-ROC setup guide|P-ROC software (libpinproc/pyprocgame) Setup Guide]]
 
 
 
===Beagleboard Setup Guide===
 
 
 
This setup guide outlines how to get libpinproc/pyprocgame running on a Beagleboard-xM under Ubuntu (11.04). 
 
 
 
Note: The guide was made using a Beagleboard-xM Rev C.  If anything is different with other Beagleboard versions, the difference *should* be slight.
 
 
 
==== Installing Ubuntu 11.04 ====
 
 
 
The [http://elinux.org/BeagleBoardUbuntu#Natty_11.04_2 elinux.org installation guide for Natty 11.04] was followed exactly, and it worked perfectly.
 
 
 
==== Installing libpinproc ====
 
 
 
First things first, you'll probably want to create a user account instead of doing all of this as root.  Starting as root:
 
 
 
    useradd <username>
 
    passwd <username>
 
 
 
Next edit /etc/sudoers and add the new user under the User privilege specification.
 
 
 
Now log out and log back in as <username>.
 
 
 
You'll also need to activate your ethernet port.  You can do this by running "sudo dhclient eth0" every time you boot, or just add "dhclient eth0" to the /etc/rc.local file so it automatically runs at startup.
 
 
 
Now, for convenience, you might want to setup the ssh server so you can ssh in:
 
 
 
    sudo apt-get install openssh-server
 
 
 
If you want to continue now through an ssh connection, you can.
 
 
 
===== Tools / Python =====
 
 
 
    sudo apt-get install libftdi-dev git-core build-essential g++ cmake python-dev
 
 
 
Note - This installed python 2.7, which seems to work fine.
 
 
 
===== libpinproc Dependencies =====
 
 
 
====== [http://code.google.com/p/yaml-cpp/ yaml-cpp] ======
 
 
 
Download, copy to your Beagleboard (I used 'scp'), and unzip.  The cd into the newly unzipped directory and run:
 
 
 
    mkdir bin; cd bin
 
    cmake ..
 
    make
 
    sudo make install
 
 
 
===== libpinproc =====
 
 
 
Use git to get the repository, then build with the -fPIC option:
 
 
 
    git clone git://github.com/preble/libpinproc.git
 
    cd libpinproc
 
    mkdir bin; cd bin
 
    cmake -DCMAKE_CXX_FLAGS="-fPIC" ..
 
    make
 
    sudo make install
 
 
 
==== Installing pyprocgame ====
 
 
 
===== pypinproc =====
 
 
 
To install without modifying any files, your pypinproc directory should be at the same level as libpinproc.
 
 
 
    git clone git://github.com/preble/pypinproc.git
 
    cd pypinproc
 
    sudo python setup.py install
 
 
 
===== pyprocgame =====
 
 
 
    git clone git://github.com/preble/pyprocgame.git
 
    cd pyprocgame
 
    sudo python setup.py install
 
 
 
Note - This should have automatically installed setuptools, which is used later in this guide.  If it didn't, you might want to install setuptools manually.
 
 
 
===== pyprocgame Dependencies =====
 
 
 
    easy_install PIL
 
    easy_install PyYAML
 
 
 
 
 
Note - PyYAML.org was down when this setup guide was made; so PyYAML was actually installed manually (download, scp it onto Beaglboard, unzip, run "python setup.py install")
 
 
 
===== proc-shared =====
 
 
 
    git clone git://github.com/preble/proc-shared.git
 
 
 
 
 
===== pyglet (optional) =====
 
 
 
    easy_install pyglet
 
 
 
* Note - I ran into [https://bugs.launchpad.net/ubuntu/+source/pyglet/+bug/786516 this bug] and the package recommended in the comments did not fix it.  I've therefore uninstalled pyglet from my board.  If you figure out a way to get pyglet working, please edit this section with instructions.
 
 
 
===== pygame (optional) =====
 
 
 
====== pygame Dependencies ======
 
 
 
    sudo apt-get install libsdl1.2-dev libsdl-ttf2.0-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libportmidi-dev libv4l-dev
 
 
 
====== pygame ======
 
Due to a dependency issue, pygame could not be installed using easy_install.  So, download pygame, scp it over, and unzip it.  Then edit src/camera.h and change:
 
 
 
from:
 
    #include <linux/videodev.h>
 
 
 
to:
 
    #include <libv4l1-videodev.h>
 
 
 
Now run from the top pygame directory:
 
 
 
    sudo python setup.py install
 
 
 
===== pyprocgame configuration file =====
 
    mkdir ~/.pyprocgame
 
 
 
Now create and edit a "config.yaml" file with your pyprocgame configuration parameters.  Refer to the pyprocgame's [http://pyprocgame.pindev.org/install.html#system-configuration-file System Configuration File] documentation for specifics.
 
 
 
===== desktop support (for graphics like virtual DMDs)=====
 
 
 
The master 1.0 branch of pyprocgame expects a desktop to be installed.  If one is not installed, scripts will fail when attempting to load pyglet or pygame.  If you want to install the ubuntu desktop:
 
 
 
    sudo apt-get install ubuntu-desktop
 
 
 
Be aware, it's a pretty big resource hog.  If you don't need it, I'd recommend not installing it.
 
 
 
If you haven't installed a desktop and don't want to, you can switch to the dev branch of pyprocgame.  From the pyprocgame directory:
 
 
 
    git checkout dev
 
 
 
Now add the following line to your ~/.pyprocgame/config.yaml file:
 
 
 
    use_desktop: False
 
 
 
Now the pyprocgame scripts you run will not attempt to pull in pyglet or pygame.  If you want to use pygame's mixer for sound playback, you still can.  You just have to import it directly into your script.  I've never used pyglet; so I don't know if there's a similar solution for sound with it.
 
 
 
==== P-ROC udev ====
 
To allow software to control the P-ROC without running everything with 'sudo', you'll need to add a udev entry for the board.  Create the file /etc/udev/rules.d/50-P-ROC.rules with the following contents:
 
 
 
    SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", SYSFS{idVendor}=="0403", SYSFS{idProduct}=="6001", MODE:="0666", GROUP="users"
 
 
 
==== Conclusion ====
 
 
 
That should be it.  You should now be able to run pyprocgame scripts to control a P-ROC.
 
 
 
== Chumby ==
 
 
 
=== Links ===
 
 
 
* [http://www.adafruit.com/index.php?cPath=46&main_page=product_info&products_id=278 Adafruit.com]
 
 
 
== ODROID ==
 
 
 
=== Links ===
 
 
 
* [http://www.hardkernel.com/main/products/prdt_info.php?g_code=G138745696275 ODROID-U3]
 
 
 
== Raspberry Pi ==
 
 
 
=== Links ===
 
 
 
* [http://www.raspberrypi.org/ Raspberry Pi]
 
* [http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=raspberry%20pi Amazon.com]
 
 
 
 
 
===Setup Guide===
 
Using a Raspberry Pi with P-ROC is not much different than using any other Linux OS. Using the directions on the [http://pinballcontrollers.com/wiki/Linux_build_instructions Linux Build Instructions] page should result in a fully-functional environment (keeping in mind that the Raspberry Pi is a pretty under-powered device in general).
 
 
 
You can also download and use the [http://missionpinball.com/2014/04/28/linux-installer-script-for-libpinproc-and-pypinproc/ debian toolkit] to automatically install everything from the dependencies through libpinproc, pypinproc, and pyprocgame.
 
 
 
The model of Raspberry pi tested was a Model B, Rev 2. The OS used is Raspbian, which is available from [http://downloads.raspberrypi.org/raspbian_latest http://downloads.raspberrypi.org/raspbian_latest]. The specific version of Raspbian used for this test is based on Debian Wheezy. Any other versions (updates or old versions) might change things.
 
 
 
Copying the image to your Raspberry Pi can be accomplished by following the instructions provided on the same download page, or just follow these links:
 
 
 
[http://www.raspberrypi.org/documentation/installation/installing-images/linux.md Install from Linux]
 
 
 
[http://www.raspberrypi.org/documentation/installation/installing-images/mac.md Install from Mac]
 
 
 
[http://www.raspberrypi.org/documentation/installation/installing-images/windows.md Install from Windows]
 
 
 
Once this process is complete, run through initial setup process. Then [[Linux_build_instructions | start building the pinproc components!]]
 

Latest revision as of 06:00, 8 February 2016