forked from blakadder/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp32.html
63 lines (54 loc) · 1.9 KB
/
esp32.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
layout: default
title: ESP32 Based Devices
---
<h2>{{ page.title }}</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.template32 != nil" | sort_natural: 'title' %}
{% for template in devices %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>
<h2>ESP32-C3 Based Devices</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.templatec3 != nil" | sort_natural: 'title' %}
{% for template in devices %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>
<h2>ESP32-C6 Based Devices</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.templatec6 != nil" | sort_natural: 'title' %}
{% for template in devices %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>
<h2>ESP32-S2 Based Devices</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.templates2 != nil" | sort_natural: 'title' %}
{% for template in devices %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>
<h2>ESP32-S3 Based Devices</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.templates3 != nil" | sort_natural: 'title' %}
{% for template in devices %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>