You got here from Controller Overview
From the Controller Overview page, click on sACN Bridge to get to this view.
Miranda can be used to create an arbitrary network of controllers that can be controlled by a single Miranda taking sACN from any source. Typically that's a console like a ETC Nomad or GrandMA.
<aside> 🐡 Please note that this feature is considered late-alpha early-beta. It may not be as stable as we'd like. It's unlikely to knock a controller offline in a way that a reboot or power cycle wouldn't bring it back, but please don't rely on it where a controller is human-inaccessible.
</aside>
To enable the sACN bridge:
The controller will reboot into sACN mode.
You will see the "Booted as sACN input node" message whenever this controller boots. Notably, changing the input universe will require a reboot, but changing the ID does not trigger an immediate reboot.
The Miranda will now not output any DMX data, and will subscribe to the correct multicast address for that universe.
If you are not already familiar with the JSON Showfile Format, please go review it, as this only covers the changes.
The sACN input node needs to know three things:
For the first, we use the normal start_address
key.
For the second, we use the fixture label
. The fixture label should contain only the MAC address of the remote system, in the standard format we use elsewhere. This means all capital letters, and : between octets. So BC:DD:C2:C9:00:3F
is correct, but bc:dd:c2:c9:00:3f
is incorrect.
For the third, we overload the fixture_type
key. So, when writing show files for sACN input nodes, fixture_id
contains the fixture_id
for the sACN input node, while fixture_type
contains the fixture_id
for the remote Miranda.
As an example, this is a fixture document for an sACN input node:
{
"controller": 1,
"channel_map": [1, 2, 3, 4],
"start_address": 1,
"fixture_type": 1,
"num_channels": 4,
"fixture_id": 1,
"label": "BC:DD:C2:C9:00:3F"
}
In this case, fixture_id
1 is fixture_id
1 on the remote controller BC:DD:C2:C9:00:3F
.
The usual limit of 300 fixtures applies, and at this moment we only support a single input universe.
It's notable that fixture_type does not have to equal fixture_id on the input node. This is a valid document:
{
"controller": 1,
"channel_map": [1, 2, 3, 4],
"start_address": 16,
"fixture_type": 1,
"num_channels": 4,
"fixture_id": 5,
"label": "BC:DD:C2:C9:00:3F"
}
<aside>
🐡 Note that the start_address
only applies to the input node, it does not apply to the remote, that address is set through the remote's showfile.
</aside>
<aside> 🐡 At this moment, it's required to have at least one cue in the showfile. While in sACN input mode, the stack section is ignored, it causes an error when loading the showfile in normal mode. We expect this to be fixed soon.
</aside>