Module: ATEM
- Defined in:
- lib/atem.rb,
lib/atem/network.rb,
lib/atem/switcher.rb,
lib/atem/switcher/input.rb,
lib/atem/switcher/input/audio.rb,
lib/atem/switcher/input_collection.rb
Defined Under Namespace
Classes: Network, Switcher
Class Method Summary
collapse
Class Method Details
.connect(ip, port = 9910) ⇒ Object
9
10
11
12
13
14
15
16
|
# File 'lib/atem.rb', line 9
def self.connect ip, port = 9910
s = Switcher.new({ :ip => ip, :port => port, :uid => 0x1337 })
s.connect
s
end
|