-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
preflashed-type.html
26 lines (22 loc) · 1016 Bytes
/
preflashed-type.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: default
title: Devices with Factory Flashed Tasmota sorted by Type
---
<h2>{{ page.title }}</h2>
<h4>All devices listed come with some version of Tasmota already flashed. They can be upgraded with the newest version.</h4>
<!-- ###################################################################### -->
{% assign category = site.templates | where: "flash", "preflashed" | sort_natural: 'type' %}
{% assign type_group = category | group_by: 'type' %}
{% assign type_grouped = type_group | sort: 'name' %}
{% for group in type_grouped %}
<BR>
<h3>{{ group.name | replace: "RGBCCT", "RGB + Color Temperature Bulb" | replace: "Dimmable", "Dimmable White Bulb" | replace: "CCT", "Color Temperature Bulb" | replace: "RGBW", "RGB + White Bulb" }}</h3>
<table id="{{ group.name }}" width="80%">
<tbody>
{% assign grouptitlesorted = group.items | sort_natural: 'title' %}
{% for template in grouptitlesorted %}
{% include tablerow.html %}
{% endfor %}
</tbody>
</table>
{% endfor %}