NGALAC/Subsystems: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
No edit summary
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:Games]]
[[Category:Game]]
{{nga}}
[[Category:Maker Faire]]
[[Category:Maker Faire]]
[[Category:NGALAC]]
 


----
----
Line 23: Line 24:
[[File:Audio-system.png|center|480px]]
[[File:Audio-system.png|center|480px]]


* swap out audio receiver for car amp thing
== Electrical ==


* Fest autio streaming with mic, cabinet audio, and stream audio
* Ground everything and very well, especially anything the human touches.


* Found a woofer to test with (tbd)
== Control Model ==
[[File:user-experience.png|center|480px]]


* Impedance matching circuit


Gainclones are a DIY version of a $3000 audio system called the GainCard. 
=== Start/Stop streaming ===


NGALAC possesses a LM3886TF based dual supply amp which requires a split rail +28/-28 DC supply
The streaming PC uses OBS to stream, and there is a python websockets library which can control it.  This library and a serial command interface known as CmdMEssenger is used to communicate with an Arduino Mega so the Mega can indicate signals to control OBS through a small python script.  CmdMEssenger implements a messaging protocol to trigger functions via commands sent over Serial.


[https://www.amazon.com/LM3886TF-Amplifier-BGEKTOTH-Stereo-Assembly/dp/B07BD2V5HL/ref=sr_1_15?ie=UTF8&qid=1521921616&sr=8-15&keywords=LM3886tf Amazon Link]
The Arduino Mega is effectively a slave to a python server on the streaming PC. The Arduino will set and clear bits in an array which is communicated to the streaming server via the server polling the Mega.  The server is continuously polling the Mega and performs actions based on it's state and the information in the status array.


[[File:Ngalac_audio_amp-r.png|none|thumb|LM3886TF based gainclone amp]]
A user pushed a green button on the cabinet front panel to start (or stop) streaming.  The Mega debounces and latches the button press and sets status bit 11.  The stream server reads this bit which determines is a button press occurred.  If the machine is streaming, the steam will be stopped (and the scene in OBS changed to "Not Live").  If the machine is not streaming, the stream will be started and the scene in OBS switched to "Live".


=== Standby Loop ===
A script that controlls the lights, makes sure that the stream is off and goes into attract mode by showing a screen saver on the rasperry pie. Script is as follows:
// TODO fill out how this works


'''Example DIY circuits which are easy to build with clear instructions'''
=== Player Activity ===


[http://www.decdun.me.uk/gainclone6.html Example Circuits]
A PIR sensor is attached to the cabinet under the player controls. The sensor feeds data back to the Arduino Mega which monitors the signal for movement. As movement occurs, a timer is reset and status bit 12 is set to 1. If the timer is not reset within 15ms, the Mega sets status bit 12 to 0, which tells the stream server to stop the stream


[[File:snub_reg_psu.png|Snubbed regulated PSU]]
=== Emulation Station Customizations ===
//TODO fill out how this works


[http://www.decdun.me.uk/gainclone_psu.html Example PSU design]


<pre style="color: red">DIY PSU price is very high, will compare to purchase options</pre>
=== Exit script ===
A script that automatically exits the game correctly. Then goes back into attact mode. Script is as follows:
//TODO add script here


<pre style="color: red">Using computer PSU may be possible after boosting +/-12 to +/-28, however, current on -12V line may not be enough to rate maximum wattage</pre>
=== Activity timer ===
A timer that counts down when no one is active to not be stuck in a game but go back to attract mode. 
//TODO fill in more technical details


== OBS automation ==


{| class="wikitable"
inputs  -> Arduino/RaspberryPi <-> [http://playground.arduino.cc/Code/CmdMessenger CmdMessenger] <-> Serial port <-> USB <-> streaming CPU <-> [https://github.com/harmsm/PyCmdMessenger PyCmdMessenger] <-> obs-wc-controller <-> obs
|+ Possible DIY Design
|-
! Qty
! Short Name
! Price
! Part
! Link
! Part Total
|-
| 1
| Transformer Dual 28V secondaries, 4.6A Max current
| $28.00
| VPS56-2300
| [https://www.digikey.com/product-detail/en/triad-magnetics/VPS56-2300/VPS56-2300-ND/7318278 Digikey]
| $28.00
|-
| 16
| Diode
| $1.00
| MUR860
| [https://www.digikey.com/product-detail/en/on-semiconductor/MUR860G/MUR860GOS-ND/919926 Digikey]
| $16.00
|-
| 4
| Linear Voltage Regulator
| $2.10
| LM338T
| [https://www.digikey.com/product-detail/en/texas-instruments/LM338T-NOPB/LM338T-NOPB-ND/212669 Digikey]
| $9.00
|-
| 8
| Rectifier Diode
| $0.20
| LM4002
| [https://www.digikey.com/product-detail/en/on-semiconductor/1N4002/1N4002FSCT-ND/1532743 Digikey]
| $1.60
|-
| 4
| 1200uF Radial Aluminum Electrolytic Caps
| $1.00 - $6.00 (depending on current)
| EEU-FS1J102B
| [https://www.digikey.com/product-detail/en/panasonic-electronic-components/EEU-FS1J102B/P123412TB-ND/8567301 Digikey]
| $24.00
|-
| *
| Various Caps and Resistors (1W)
| $10.00
| *
| *
| $10.00
|-
! scope="row" colspan="2"| Total
|
|
|
| $95.00
|}
----


== Electrical ==


* Ground everything and very well, especially anything the human touches.
[https://stackoverflow.com/questions/9344235/how-to-restart-program-automatically-if-it-crashes-in-windows Guardian Process] - Windows OBS restart automatically on fail strategy


== Control Model ==
Windows Task Scheduler starts the stream server automatically on the stream pc.
[[File:user-experience.png|center|480px]]


== OBS automation ==
Windows-r to bring up run dialog


inputs  -> Arduino/RaspberryPi <-> [http://playground.arduino.cc/Code/CmdMessenger CmdMessenger] <-> Serial port <-> USB <-> streaming CPU <-> [https://github.com/harmsm/PyCmdMessenger PyCmdMessenger] <-> obs-wc-controller <-> obs
tasksched.msc


look for Launch NGALAC server task


[https://stackoverflow.com/questions/9344235/how-to-restart-program-automatically-if-it-crashes-in-windows Guardian Process] - Windows OBS restart automatically on fail strategy
Task should run automatically but if not, can run manually with right-click run or the green play button on bottom right panel.  If it asks you to close all instances, say yes




Line 151: Line 101:


Query and send commands to OBS from python (can theoretically control everything)
Query and send commands to OBS from python (can theoretically control everything)
'''credentials'''
credentials for the stream websocket interface are required.
'''rtmp server setup'''
[[NGALAC/Subsystems/RTMPserver|RTMP server configuration]]


== Arduino ==
== Arduino ==
The arduino code is located in c:/Users/NGALAC-LIVE/projects/ngalac/prod
The main file is arduino_controller.ino, and lights.cpp controls the lights only.


* [https://www.arduino.cc/en/Tutorial/Debounce Debounce buttons]
* [https://www.arduino.cc/en/Tutorial/Debounce Debounce buttons]
Line 168: Line 129:


Can trigger LED strips or whatever else as we wish, run pre-defined patterns, etc.
Can trigger LED strips or whatever else as we wish, run pre-defined patterns, etc.
[[File:NGALAC_control_boards.jpg|center|640px]]
[[File:NGALAC-arduino.png|center]]


== Software ==
== Software ==
Line 178: Line 143:
</nowiki>
</nowiki>


Please see https://github.com/noisebridge/NGALAC for all relevent code
== Webcam Adjustment ==
Using a servo hooked up to the Leonardo to move adjust the webcam height via some kind of potentiometer.
right now servo is a radio [s]hack 08A14.
pinout:
[[File:radio-hack-servo.png|none|480px]]


== Config Files ==
== Config Files ==
Line 239: Line 214:


* Raspberry Pie not auto-connecting to net by default.  Should it?
* Raspberry Pie not auto-connecting to net by default.  Should it?
* nginx w/ rtmp to restream
== Neuro ==
http://www.psychiclab.net/IBVAmanual/QCgraph.html

Latest revision as of 23:43, 9 July 2019


Noisebridge | About | Visit | 272 | Manual | Contact | Guilds | Stuff | Events | Projects | Meetings | Donate E
Guilds (Volunteer) | Maintainers | Meta | Code | Electronics | Fabrication | Games | Sewing | Music | AI | Neuro | Philosophy | Funding | Art | Security | Ham | WGs E
Games Guild | Arcade | VRBridge | Gaming Archivists
Gamedev Events | Gamebridge Gamedev Wednesdays | Gamedev Coworking Sun-Tue | Blender | GDC
Gaming Thursdays | Indiebridge 1st Thur | Tablebridge 2nd Thur | 10MinsOfGame Talks 3rd Thur | Songbridge 4th Thur

Fighting Game Fridays: School of Melee 1st & 3rd Fri | Showcase Showdown 2nd & 4th Fri
Game Engine Saturdays: Unitybridge 1st Sat | Unrealbridge 2nd Sat | Godot Meetup 3rd Sat | Graphicsbridge 4th Sat
Noisebridge Games | NB Adventure | Noisebridge Against Humanity | Simbridge | BBS
Game Jams | GameJamCamp | Global Game Jam

E
Noisebridge Gaming Archivists | NGALAC Arcade Cabinet | NGA Identity V · T · E



Subsystems[edit | edit source]

Component-Diagram.png

Power[edit | edit source]

Power Connections-final.png

Streaming PC[edit | edit source]

BIOS setting for Auto-on with power-on (e.g. from switch)


Ngalac bios1.png
Ngalac bios2.png


Audio[edit | edit source]

Audio-system.png

Electrical[edit | edit source]

  • Ground everything and very well, especially anything the human touches.

Control Model[edit | edit source]

User-experience.png


Start/Stop streaming[edit | edit source]

The streaming PC uses OBS to stream, and there is a python websockets library which can control it. This library and a serial command interface known as CmdMEssenger is used to communicate with an Arduino Mega so the Mega can indicate signals to control OBS through a small python script. CmdMEssenger implements a messaging protocol to trigger functions via commands sent over Serial.

The Arduino Mega is effectively a slave to a python server on the streaming PC. The Arduino will set and clear bits in an array which is communicated to the streaming server via the server polling the Mega. The server is continuously polling the Mega and performs actions based on it's state and the information in the status array.

A user pushed a green button on the cabinet front panel to start (or stop) streaming. The Mega debounces and latches the button press and sets status bit 11. The stream server reads this bit which determines is a button press occurred. If the machine is streaming, the steam will be stopped (and the scene in OBS changed to "Not Live"). If the machine is not streaming, the stream will be started and the scene in OBS switched to "Live".

Standby Loop[edit | edit source]

A script that controlls the lights, makes sure that the stream is off and goes into attract mode by showing a screen saver on the rasperry pie. Script is as follows: // TODO fill out how this works

Player Activity[edit | edit source]

A PIR sensor is attached to the cabinet under the player controls. The sensor feeds data back to the Arduino Mega which monitors the signal for movement. As movement occurs, a timer is reset and status bit 12 is set to 1. If the timer is not reset within 15ms, the Mega sets status bit 12 to 0, which tells the stream server to stop the stream

Emulation Station Customizations[edit | edit source]

//TODO fill out how this works


Exit script[edit | edit source]

A script that automatically exits the game correctly. Then goes back into attact mode. Script is as follows: //TODO add script here

Activity timer[edit | edit source]

A timer that counts down when no one is active to not be stuck in a game but go back to attract mode. //TODO fill in more technical details

OBS automation[edit | edit source]

inputs -> Arduino/RaspberryPi <-> CmdMessenger <-> Serial port <-> USB <-> streaming CPU <-> PyCmdMessenger <-> obs-wc-controller <-> obs


Guardian Process - Windows OBS restart automatically on fail strategy

Windows Task Scheduler starts the stream server automatically on the stream pc.

Windows-r to bring up run dialog

tasksched.msc

look for Launch NGALAC server task

Task should run automatically but if not, can run manually with right-click run or the green play button on bottom right panel. If it asks you to close all instances, say yes


OBS Web Socket Plugin Sets up a websocket API for OBS
obs-wc-rc Python library to interface with OBS websocket API
PyCmdMesssenger Python library for CmdMessenger using serial port
CmdMessenger for Arduino Arduino CmdMessenger library to communicate with PyCmdMessenger on server via serial port

OBS websocket plugin

Error creating thumbnail: Unable to save thumbnail to destination

Tools -> Websocket Plugin

obs-wc-rc

Query and send commands to OBS from python (can theoretically control everything)

credentials

credentials for the stream websocket interface are required.

rtmp server setup

RTMP server configuration

Arduino[edit | edit source]

The arduino code is located in c:/Users/NGALAC-LIVE/projects/ngalac/prod

The main file is arduino_controller.ino, and lights.cpp controls the lights only.

Arduino code using CmdMessenger library for talking through serial port to python orchestrator

Python code to pair with CmdMessenger

First 3 states are switches set high or low

Last 3 are LED states (or anything else)

Can trigger LED strips or whatever else as we wish, run pre-defined patterns, etc.

NGALAC control boards.jpg
Error creating thumbnail: Unable to save thumbnail to destination

Software[edit | edit source]

Arduino IDE 1.8.1+
* CmdMessenger
Python 3.5.4+
* vitualenv, virtualenvwrapper-win, PyCmdMessenger, obs-ws-rc
Git

Please see https://github.com/noisebridge/NGALAC for all relevent code

Webcam Adjustment[edit | edit source]

Using a servo hooked up to the Leonardo to move adjust the webcam height via some kind of potentiometer.

right now servo is a radio [s]hack 08A14.

pinout:

Error creating thumbnail: Unable to save thumbnail to destination

Config Files[edit | edit source]

Controllers[edit | edit source]

  • evtest to check inputs from the IPAC-2 on rpi
  • add player 2 keys to retropi retroarch config

maybe physically generate a plug/unplug signal via detection to arduino and trigger this: https://zedt.eu/tech/linux/restarting-usb-subsystem-centos/

arduino triggering done by detecting various grounding or other (is there a power? must be.) for each controller, then sending that to arduino, then to pi.

usb stuff - polling on rpi

full jsx linux system https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git/tree/Documentation/input/joydev/joystick.rst

notes[edit | edit source]

keep alives for obs, obs restart on power on, rpi watchdog, faulover OBS instance, switched by obswsrc cannot connect. how will this work with auto start, and how to select which instance is stealing?


rpi watchdog

static electricity on case

Arduino COM port detection on streaming PC in python

Do we want to record and stream?


Hwinfo for monitoring streaming PC? whyzit shuttin dwn.


4/7/18 added obs to restart on crash and moved lauch_obspy to restart_obs.bat

add rpi input detection and set timer to tell stream PC to stop streaming (probably through Arduino or API call)

udev rules

ACTION=="add", SUBSYSTEMS=="usb", KERNELS=="6-5:1.0", SYMLINK+="input/joy"

udevadm test -a /sys/path or /dev/path

udevadm test /dev/thing i think

udevadm info --name /dev/thing --query=property

udevadm info --a --name= /dev/thing

udevadm trigger --verbose -dry-run --type=devices --subsystem-match=usb

udevadm monitor --kernel, --udev, or --subsystem-match=usb

Networking[edit | edit source]

  • Raspberry Pie not auto-connecting to net by default. Should it?
  • nginx w/ rtmp to restream


Neuro[edit | edit source]

http://www.psychiclab.net/IBVAmanual/QCgraph.html