{% include 'menu.html' %}
Board Capabilities
{% if rows %}
{% for row in rows %}
{% if row.capability in ['Bridge BLE Version', 'Bridge Supported API Version', 'GW Interface Chip Version', 'Gateway Supported API Version'] and row.value != '-' %}
{{ row.capability }}:
{{ row.value }}
{% endif %}
{% endfor %}
| Capability |
Value |
{% for row in rows %}
| {{ row.capability }} |
{% if row.value == 'Supported' or row.value == 'Full Support' or row.value == 'Yes' %}
{{ row.value }}
{% elif row.value == 'Partial Support' %}
{{ row.value }}
{% elif row.value == 'Not Supported' or row.value == 'No' %}
{{ row.value }}
{% elif row.value == '-' %}
-
{% else %}
{{ row.value }}
{% endif %}
|
{% endfor %}
{% elif error %}
{{ error }}
{% endif %}