{% extends "base.html" %} {% block extraHead %} {% endblock extraHead %} {% block content %}

Device {{device['devType']}}

Description

Name Content
Address {{addr}}
Device Type {{device.devType}}
Vendor Id {{device.vendorID}}
Product Id {{device.productID}}
Version {{device.version}}
Parent {{device.parent}}
Url {{device.url}}
Info {{device.info}}
Unsupported Attributes {{device.unsupportedAttributes}}
Unsupported Methods {{device.unsupportedMethods}}
Unsupported Notifications {{device.unsupportedNotifications}}
{% if schema %}

Attributes

{% for attribute,val in schema.attributes.iteritems() %} {% endfor %}
Name Value Unit Type Description
{{attribute}} {{device[attribute]}} {{val.unit}} {{val.type.type}} {{val.description}}

Methods

{% for method,val in schema.methods.iteritems() %} {% endfor %}
Name Parameters Description
{% for parameter,param in val.parameters.iteritems() %} {% if param.direction == 'in' %}
{% endif %} {% endfor %}
{{val.description}}
{% else %}

Schema Not Found!
Several options:

{% endif %}

Tags

Current Tags

{% if tags %} {% for tag in tags %} {% endfor %} {% else %}

Tags Not Found!
Several options:

{% endif %}

Manage Tags

Action Parameter Description
Add tag name for the device
{% endblock content %}