Skip to content

Commit

Permalink
Fix: comment out dummy OSC listener/sender
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubobubobubobubo committed Jun 26, 2024
1 parent 63c745e commit 670cd4f
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions sardine_core/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,21 +76,19 @@
bowl.add_handler(osc_loop) # NOTE: always keep this loop running for OSC handlers

# OSC Handler: dummy OSC handler, mostly used for test purposes
dummy_osc = OSCHandler(
ip="127.0.0.1",
port=12345,
name="Dummy OSC Connexion",
ahead_amount=0.0,
loop=osc_loop,
)
O = dummy_osc.send

# dummy_osc = OSCHandler(
# ip="127.0.0.1",
# port=12345,
# name="Dummy OSC Connexion",
# ahead_amount=0.0,
# loop=osc_loop,
# )
# O = dummy_osc.send

# # OSC Listener Handler: dummy OSCIn handler, used for test purposes
my_osc_listener = OSCInHandler(
ip="127.0.0.1", port=23456, name="Dummy OSC Listener", loop=osc_loop
)

# my_osc_listener = OSCInHandler(
# ip="127.0.0.1", port=23456, name="Dummy OSC Listener", loop=osc_loop
# )

# SuperDirt Handler: conditional
if config.superdirt_handler:
Expand Down

0 comments on commit 670cd4f

Please sign in to comment.