{% extends "layout.html" %} {% from "macros.html" import alert_dismiss with context %} {% block styles %} {% endblock %} {% block content %}

Outlet config


Control Download
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {{ alert_dismiss({'alert_type': category, 'texto_alerta': message}) }} {% endfor %} {% endif %} {% endwith %}

{% if dict_config_content %}
{% for section, config_opts in dict_config_content.items() %} {% if section != section_genconf %}

{{ section }}

{% for var_name, (value, var_type) in config_opts.items() %}
{% if var_type == 'str' %}
{% else %}
{% endif %}
{% endfor %}
{% endif %} {% endfor %}



{% set section = section_genconf %} {% set config_opts = dict_config_content[section] %}

{{ section }}

{% for var_name, (value, var_type) in config_opts.items() %}
{% if var_type == 'str' %}
{% else %}
{% endif %}
{% endfor %}
{% else %}
{% endif %}

{% if file_lines %}
{{ file_lines|safe }}
{% else %} {% endif %}

Homebridge JSON config

Outlets as accessories for the homebridge-rcswitch-gpiomem plugin


{{ homebridge_info|safe }}

Upload file for replacement:


{% endblock %} {% block scripts%} {% endblock %}