2023-08-07 18:05:20 +00:00
|
|
|
# C3VOC viri MQTT to sACN DMX
|
|
|
|
|
2023-08-08 04:26:35 +00:00
|
|
|
# All options are optional, except for mqtt host. The options below
|
|
|
|
# reflect the default values if missing.
|
2023-08-07 18:05:20 +00:00
|
|
|
|
|
|
|
# This section contains the login information to your mqtt server.
|
|
|
|
# user and password are ignored if both are missing or empty.
|
|
|
|
[mqtt]
|
2023-08-08 04:26:35 +00:00
|
|
|
host = ""
|
2023-08-07 18:05:20 +00:00
|
|
|
user = ""
|
|
|
|
password = ""
|
|
|
|
topic = "/voc/alert"
|
|
|
|
|
2024-08-17 10:19:01 +00:00
|
|
|
# "demo" can be anything you like
|
|
|
|
[universes.demo]
|
2023-08-07 18:05:20 +00:00
|
|
|
# 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"
|
|
|
|
|
2023-08-08 04:26:35 +00:00
|
|
|
# which universe to address
|
|
|
|
universe = 1
|
|
|
|
|
2024-02-11 13:31:34 +00:00
|
|
|
# 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 = []
|
|
|
|
|
2024-08-17 10:19:01 +00:00
|
|
|
# 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
|
2023-08-07 18:05:20 +00:00
|
|
|
|
|
|
|
# DMX dimmer value when displaying the rainbow pattern. Must be equal
|
2024-08-17 10:19:01 +00:00
|
|
|
# or below the generic 'brightness' value above. Set to 0 to disable
|
|
|
|
# the rainbow
|
|
|
|
rainbow_brightness = 150
|
2023-08-07 18:05:20 +00:00
|
|
|
|
|
|
|
# This contains the DMX start addresses of your light fixtures. You
|
|
|
|
# have to add atleast one fixture for the software to work.
|
2024-08-17 10:19:01 +00:00
|
|
|
[universes.demo.lights]
|
2024-08-17 10:33:32 +00:00
|
|
|
# Ignition WAL-L710 <https://www.thomann.de/de/ignition_wal_l710_par_w_dmx.htm>
|
|
|
|
IgnitionWALL710 = []
|
|
|
|
|
|
|
|
# Stairville LED PAR 56 <https://www.thomann.de/de/stairville_led_par_56_alu_schwarz.htm>
|
|
|
|
StairvillePar56 = []
|
|
|
|
|
|
|
|
# cheap aliexpress lights
|
|
|
|
TSSS_LED_PAR_RGBW = []
|
|
|
|
Sheds30WCOBRGB = []
|
|
|
|
|
|
|
|
# Varytec Hero Wash 712 Z RGBW Zoom <https://www.thomann.de/de/varytec_hero_wash_712_z_rgbw_zoom.htm>
|
|
|
|
VarytecHeroWashZoom712 = []
|
|
|
|
|
|
|
|
# WLED "multi RGB" mode <https://kno.wled.ge/interfaces/e1.31-dmx/>
|
|
|
|
WLED = []
|