Your First Show
This guide walks you through the complete workflow from an empty show to triggering your first cue. It takes about 10 minutes.
Step 1 โ Import a fixture type#
Before you can patch a fixture, phix needs to know what it is. Fixture types are described using the GDTF format.
From GDTF Share (internet required):
Type in the command line:
gdtf search "Robe Robin"phix returns a list of matching fixtures. Download one with:
gdtf download <rid>where <rid> is the revision ID shown in the search results.
From a local file:
gdtf import /path/to/MyFixture.gdtfVerify the import:
list gdtfStep 2 โ Patch a fixture#
Assign a fixture instance to a DMX address. Replace the values with your actual fixture type, universe, and start address:
patch MyFixtureName 1 "Front Wash 1" Mode1 1 1This patches fixture with ID 1, named "Front Wash 1", using mode "Mode1", in universe 1, starting at address 1.
Verify your patch:
list fixturesStep 3 โ Configure DMX output#
Start DMX output so values reach your fixtures:
dmx startBy default phix uses ArtNet broadcasting to 255.255.255.255 on port 6454. To switch to a specific IP or use sACN, see DMX Output.
Step 4 โ Select a fixture and set a value#
Select your fixture by its ID:
fixture 1Turn it on by setting the dimmer to full:
set dimmer 1.0You should see the fixture react. The value is now in the programmer.
Step 5 โ Store a preset#
Save this state as a preset in the Dimmer category, slot 1, named "Full":
store preset 1.1 "Full"Clear the programmer when done:
clearStep 6 โ Create a group#
Make selecting all your wash fixtures easier with a group:
fixture 1 thru 4store group 1 "Front Wash"Step 7 โ Create a cue#
Create a sequence to hold your cues:
store sequence 1 "Main Show"Select your group, build a look, then record it as cue 1:
group 1set dimmer 1.0store preset 1.1sequence 1 record cue 1Or use the simplified workflow to add a cue:
seq 1 cue 1 "Full On" fade 2Step 8 โ Assign to an executor and play#
Assign sequence 1 to executor 1:
executor 1 assign seq 1Trigger the first cue:
go 1The executor fades to cue 1 over 2 seconds.
What's next?#
Now that you know the basics:
- Learn about Presets in depth for organized looks
- Add more Cues and timing to build a full show
- Set up Executor Pages for a live control surface
- Explore Effects for dynamic movement and color chases