Hi Mario, Ron and the Team,
Using the PBC/6X I soldered/ assembled a bidirectional Y cable per you pin spec and it works fine.
I received the Smart Multibox today as I want to place this (more secure) solution under my board by simply replicating my bidirectional cable setup, using the Smart Multibox and 5-pin MIDI cables.
So just to confirm my cabling is:
1. Connect a 5-pin MIDI cable from the MIDI OUT jack on the PBC/6X to Input 1 on the Smart Multibox.
2. Connect a separate MIDI cable from Output 1 of the Smart Multibox to my MIDI IN of my external effect devices.
3. Connect a separate MIDI cable from the MIDI OUT of my external device (Morningstar MC-4) to Input 2 on the Smart Multibox.
4. Set the Smart Multibox to Merge / Thru Mode (indicated by a solid green Status LED).
Output is fine but Input just won't work.
So I changed step 4. to: Set the Smart Multibox to Script mode (indicated by a solid Orange/ Yellow Status LED).
Here's my script, but still doesn't help.
#
# BIDIRECTIONAL PBC/6X
# by Wayne Gardner 30/06/2026.
#
# A script that forces the Smart Multibox to route standard MIDI incoming data from
# your Morningstar MC4 Pro back to the special bidirectional return path of the RJM
# Mastermind PBC/6X.
#
from multibox import *
def midi_received(port, msg):
# 1. Forward outbound commands from PBC/6X (Input 1) to Outputs 1 and 2
if port == MIDI_IN_1:
midi_send(MIDI_OUT_1, msg)
#midi_send(MIDI_OUT_2, msg)
# 2. Forward return data from MC4 Pro (Input 2) directly into PBC/6X via Output 1
elif port == MIDI_IN_2:
midi_send(MIDI_OUT_1, msg)
# Visual confirmation that a message passed through the processor
blink_led()
# CRITICAL: Tell the Multibox firmware to actively listen to this function
midi_set_receive_cb(midi_received)
Can I access your script library or can you assist with making this work?
Cheers,
Wayne Gardner
Australia
Using the PBC/6X I soldered/ assembled a bidirectional Y cable per you pin spec and it works fine.
I received the Smart Multibox today as I want to place this (more secure) solution under my board by simply replicating my bidirectional cable setup, using the Smart Multibox and 5-pin MIDI cables.
So just to confirm my cabling is:
1. Connect a 5-pin MIDI cable from the MIDI OUT jack on the PBC/6X to Input 1 on the Smart Multibox.
2. Connect a separate MIDI cable from Output 1 of the Smart Multibox to my MIDI IN of my external effect devices.
3. Connect a separate MIDI cable from the MIDI OUT of my external device (Morningstar MC-4) to Input 2 on the Smart Multibox.
4. Set the Smart Multibox to Merge / Thru Mode (indicated by a solid green Status LED).
Output is fine but Input just won't work.
So I changed step 4. to: Set the Smart Multibox to Script mode (indicated by a solid Orange/ Yellow Status LED).
Here's my script, but still doesn't help.
#
# BIDIRECTIONAL PBC/6X
# by Wayne Gardner 30/06/2026.
#
# A script that forces the Smart Multibox to route standard MIDI incoming data from
# your Morningstar MC4 Pro back to the special bidirectional return path of the RJM
# Mastermind PBC/6X.
#
from multibox import *
def midi_received(port, msg):
# 1. Forward outbound commands from PBC/6X (Input 1) to Outputs 1 and 2
if port == MIDI_IN_1:
midi_send(MIDI_OUT_1, msg)
#midi_send(MIDI_OUT_2, msg)
# 2. Forward return data from MC4 Pro (Input 2) directly into PBC/6X via Output 1
elif port == MIDI_IN_2:
midi_send(MIDI_OUT_1, msg)
# Visual confirmation that a message passed through the processor
blink_led()
# CRITICAL: Tell the Multibox firmware to actively listen to this function
midi_set_receive_cb(midi_received)
Can I access your script library or can you assist with making this work?
Cheers,
Wayne Gardner
Australia