Skip to content

Commit 87147c0

Browse files
committed
updates
1 parent 814a904 commit 87147c0

8 files changed

Lines changed: 53 additions & 8 deletions

File tree

public/svgs/chip.svg

Lines changed: 1 addition & 0 deletions
Loading

public/svgs/zwave.svg

Lines changed: 1 addition & 0 deletions
Loading

src-11ty/_includes/product-overview.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ <h1 class="details-hero-title">{{ productTitle }}</h1>
2020

2121
<div class="details-actions">
2222
{%- for action in actions %}
23+
{% if action.section_header %}
24+
<div class="action-section-header">{{ action.section_header }}</div>
25+
{% endif %}
2326
{% set external = action.href.startsWith('http') %}
2427
{% if action.tag_open %}
2528
{{ action.tag_open | safe }}

src-11ty/home-assistant-connect-zwa-2/index.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,44 @@ productTitle: Home Assistant Connect ZWA-2
88
productSubtitle: The ultimate way to connect Z-Wave devices to Home Assistant.
99

1010
actions:
11-
- title: Install original firmware
11+
- title: Install original USB bridge firmware
12+
section_header: ESP firmware
1213
description: The original firmware that allows to connect the ZWA-2 directly to Home Assistant hub via USB cable.
1314
href: /home-assistant-connect-zwa-2/install
14-
icon: /svgs/install.svg
15+
icon: /svgs/chip.svg
1516

1617
- title: Install portable Z-Wave firmware
1718
description: Place the ZWA-2 in the most optimal position and connect it to Home Assistant via Wi-Fi.
1819
href: /home-assistant-connect-zwa-2/install-portable
19-
icon: /svgs/install.svg
20+
icon: /svgs/chip.svg
2021
experimental: true
2122

2223
- title: Use Portable Z-Wave with Power-over-Ethernet
2324
description: Place the ZWA-2 in the most optimal position and connect it to Home Assistant via Power-over-Ethernet.
2425
href: /home-assistant-connect-zwa-2/use-poe
25-
icon: /svgs/install.svg
26+
icon: /svgs/chip.svg
2627
experimental: true
2728

29+
- title: Install Z-Wave controller firmware
30+
section_header: Z-Wave firmware
31+
description: Restore the original Z-Wave controller firmware after using the repeater or Zniffer firmware.
32+
href: /home-assistant-connect-zwa-2/install-controller
33+
icon: /svgs/zwave.svg
34+
2835
- title: Install Z-Wave repeater firmware
2936
description: This firmware turns ZWA-2 into a standalone Z-Wave device, which can help strengthen an existing Z-Wave network.
3037
href: /home-assistant-connect-zwa-2/install-repeater
31-
icon: /svgs/install.svg
38+
icon: /svgs/zwave.svg
3239
experimental: true
3340

3441
- title: Install Z-Wave Zniffer firmware
35-
description: This firmware is for Z-Wave developers, and can be used to inspect packets, decode traffic, send commands, gather statistics, and more.
42+
description: This is an advanced firmware that can be used to inspect packets, decode traffic, send commands, gather statistics, and more.
3643
href: /home-assistant-connect-zwa-2/install-zniffer
37-
icon: /svgs/install.svg
44+
icon: /svgs/zwave.svg
3845
experimental: true
3946

4047
- title: Configure ZWA-2
48+
section_header: Tools
4149
description: Change region, view DSK and QR code for an existing ZWA-2.
4250
href: /home-assistant-connect-zwa-2/configure-zwa2
4351
icon: /svgs/wrench.svg
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: install.html
3+
title: Install Z-Wave controller firmware
4+
subtitle: Restore the original Z-Wave controller firmware
5+
description: Install Z-Wave controller firmware on your Home Assistant Connect ZWA-2
6+
backHref: /home-assistant-connect-zwa-2/
7+
hero: |
8+
<p>
9+
Restore the original Z-Wave controller firmware after using the repeater or Zniffer firmware.
10+
</p>
11+
---
12+
13+
<div class="installer-wrapper">
14+
<div class="installer-card">
15+
<install-firmware firmware="controller"></install-firmware>
16+
</div>
17+
</div>
18+
19+
<script type="module" src="https://home-assistant.github.io/zwa2-toolbox/standalone/install-firmware.js"></script>

src-11ty/home-assistant-connect-zwa-2/install-zniffer.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Install Z-Wave Zniffer firmware on your Home Assistant Connect ZWA-
66
backHref: /home-assistant-connect-zwa-2/
77
hero: |
88
<p>
9-
This firmware is for Z-Wave developers, and can be used to inspect packets, decode traffic, send commands, gather statistics, and more.
9+
This is an advanced firmware that can be used to inspect packets, decode traffic, send commands, gather statistics, and more.
1010
</p>
1111
---
1212

src/styles/details-page.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,15 @@
7171
flex-direction: column;
7272
}
7373

74+
.action-section-header {
75+
padding: 12px 16px 4px;
76+
font-size: 0.8rem;
77+
font-weight: 600;
78+
text-transform: uppercase;
79+
letter-spacing: 0.05em;
80+
color: var(--app-text-muted);
81+
}
82+
7483
.action-item {
7584
display: grid;
7685
grid-template-columns: auto 1fr auto;

vite.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ export default defineConfig({
9393
__dirname,
9494
'dist/home-assistant-connect-zwa-2/recover/index.html'
9595
),
96+
homeAssistantConnectZwa2InstallController: resolve(
97+
__dirname,
98+
'dist/home-assistant-connect-zwa-2/install-controller/index.html'
99+
),
96100
homeAssistantConnectZwa2InstallRepeater: resolve(
97101
__dirname,
98102
'dist/home-assistant-connect-zwa-2/install-repeater/index.html'

0 commit comments

Comments
 (0)