mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2026-04-06 23:53:31 +00:00
fix gain setter, add public_packet methods, update readme
fix gain setter for strips. add accessor methods for public_packet. update readme
This commit is contained in:
@@ -9,18 +9,19 @@ _kind = 'potato'
|
||||
opts = {
|
||||
'ip': 'ws.local',
|
||||
'streamname': 'testing',
|
||||
'port': 6980,
|
||||
'port': 6990,
|
||||
'bps': 0,
|
||||
'channel': 3
|
||||
}
|
||||
|
||||
vbanrs = {kind.id: vban_cmd.connect(_kind, **opts) for kind in kinds.all}
|
||||
tests = vbanrs[_kind]
|
||||
|
||||
def setup_package():
|
||||
tests._modes = Modes()
|
||||
tests._rt_packet_socket.bind((socket.gethostbyname(socket.gethostname()), tests._port))
|
||||
tests.worker = Thread(target=tests._send_register_rt, daemon=True)
|
||||
tests.worker.start()
|
||||
tests._modes = Modes()
|
||||
|
||||
def teardown_package():
|
||||
tests._rt_packet_socket.close()
|
||||
|
||||
Reference in New Issue
Block a user