viri-leds-dmx-sacn/config.example.toml

48 lines
1.4 KiB
TOML

# C3VOC viri MQTT to sACN DMX
# All options are optional, except for mqtt host. The options below
# reflect the default values if missing.
# This section contains the login information to your mqtt server.
# user and password are ignored if both are missing or empty.
[mqtt]
host = ""
user = ""
password = ""
topic = "/voc/alert"
# "demo" can be anything you like
[universes.demo]
# Wether to enable sACN multicast. Default is off.
multicast = false
# If sACN multicast is disabled, this specifies the address sACN unicast
# is sent to.
target = "127.0.0.1"
# which universe to address
universe = 1
# Filter by specific components. If this list is non-empty, the message
# will get shown if atleast one of these filters match. The filters are
# applied by using re.search() on the component part of the message.
filters = []
# This specifies the maximum DMX dimmer value that's sent to your lights
# when alerts occur. This must be atleast the same or more as the
# rainbow brightness (see below).
alert_brightness = 255
# DMX dimmer value when displaying the rainbow pattern. Must be equal
# or below the generic 'brightness' value above. Set to 0 to disable
# the rainbow
rainbow_brightness = 150
# This contains the DMX start addresses of your light fixtures. You
# have to add atleast one fixture for the software to work.
[universes.demo.lights]
ignition_wal_l710 = []
stairville_par_56 = []
tsss_led_par_rgbw = []
varytec_hero_wash_712_zoom = []
wled_multi_rgb = []