forked from blakadder/zigbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.html
22 lines (21 loc) · 779 Bytes
/
misc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: Miscellaneous
---
<h2>{{ page.title }}</h2>
This list includes devices that are repeaters. Almost any mains powered device (typically bulbs, plugs and switches) will act as a router as well but they're not listed here.
<p></p>
<!-- ###################################################################### -->
{% assign categories = site.zigbee | where: "category", "misc" %}
{% assign vendor = categories | group_by: 'vendor' %}
{% assign vendors = vendor | sort_natural: 'name' %}
<table>
<tbody>
{% for type in vendors %}
{% assign type_sorted = type.items | sort_natural: 'title' %}
{% for template in type_sorted %}
{% include tablerow.html %}
{% endfor %}
{% endfor %}
</tbody>
</table>