Skip to content

Configuration Files

Will Colding edited this page Aug 14, 2023 · 3 revisions

Cameras.ini

Camera entries require 4 total parameters:

Header - the name of the camera/mix in brackets

MainColor - the color to use behind the name and in the camera selection dropdown (as a hex code, with no 0x or additional markings)

BGColor - the color of the background (as a hex code, with no 0x or additional markings)

Bus - the X32 MixBus on which this camera control will operate

Example:

[A CAM]
MainColor = CC0000FF   // darker red for better contrast with white text
BGColor   = E06666FF   // lighter red for better contrast with buttons
Bus       = 1          // MixBus 1 on the X32

Channels.ini

The channels configuration file defines the buttons to be placed in each camera control. Channel entries require 6 total parameters:

Header - the name of the channel in brackets as it should appear on the scribble strip

Color - the color name (as defined in Colors.ini) that the button should be set to

X32Channel - the channel on the X32 that this button should control

MidiChannel - the MIDI CC channel value used to control trim for this channel

MidiController - the MIDI CC controller value used to control trim for this channel

Position - a coordinate for the upper left point of the button. Users may wish to lay buttons out in TouchOSC and copy positional data to each button in the configuration file

Example:

[Homer]
Color = Blue
X32Channel = 1
MidiChannel = 1
MidiController = 17
Position = 52, 20
Clone this wiki locally