{% extends "device.html" %} {% block submenu%} Capteurs
{{device.name}}
{% end %} {% block body %}
{{device.name}}
Identifiant: {{device.identifier}}
Type de carte: {{device.card.name}}
Entrées analogiques
{% for port in device.ports['input']%} {% if port.enabled%}
{{port.number}} : {{port.name}}
{% end %} {% end %}
Sorties digitales
{% for port in device.ports['output']%} {% if port.enabled%}
{{port.number}} : {{port.name}}
{% end %} {% end %}
Modifier la configuration
{% end %}