31 lines
No EOL
684 B
Django/Jinja
31 lines
No EOL
684 B
Django/Jinja
[global]
|
|
room = "{{ room }}"
|
|
mqttIp = "{{ mqtt_ip }}"
|
|
mqttPort = "{{ mqtt_port }}"
|
|
|
|
{% if barco_G62 is defined %}
|
|
{%+ for projector in barco_G62 +%}
|
|
[{{projector.model}}.{{projector.position}}]
|
|
ip = "{{projector.ip}}"
|
|
port = {{projector.port}}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{%+ if tse_box is defined +%}
|
|
serial_device = "{{ tse_box.serial_device }}"
|
|
{% endif %}
|
|
|
|
{%+ if projector_motors is defined +%} {# change to appropriate thingy for running them #}
|
|
{%+ for motor in projector_motors +%}
|
|
[projector_motors.{{motor.position}}]
|
|
i2c_address = {{motor.i2c_address}}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{%+ if extron_audio is defined +%}
|
|
|
|
{% endif %}
|
|
|
|
{%+ if extron_video is defined +%}
|
|
|
|
{% endif %} |