Skip to content

Commit 65765b5

Browse files
committed
Consolidate WiFi and Connections to Network, add Ethernet - WIP
1 parent b7bad54 commit 65765b5

File tree

30 files changed

+15258
-15259
lines changed

30 files changed

+15258
-15259
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# WiFi - Access Point
1+
# Network - WiFi Access Point
22

33
<img width="320" src="https://github.com/user-attachments/assets/4b79b6aa-034b-4b25-810c-08cc230b3df2" />

docs/network/ethernet.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Network - Ethernet
2+
3+
🚧
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# MQTT
1+
# Network - MQTT
22

33
<img width="320" src="https://github.com/user-attachments/assets/51e336fe-4935-4135-a9f8-bf469c67de8e" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# NTP
1+
# Network - NTP
22

33
<img width="320" src="https://github.com/user-attachments/assets/94d40083-3bbc-4b58-8c60-87d70dca643c" />

docs/wifi/sta.md renamed to docs/network/sta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WiFi - Station
1+
# Network - WiFi Station
22

33
<img width="320" src="https://github.com/user-attachments/assets/f9967bac-eb73-4bf1-bb34-690f4ff4b28c" />
44

firmware/installer/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,4 @@ <h2>USB-to-serial chip drivers</h2>
5151
<p>See also <a href="https://github.com/witnessmenow/ESP-Web-Tools-Tutorial/blob/main/README.md">ESP-Web-Tools-Tutorial</a></p>
5252
<p>*: Affiliate link</p>
5353
</body>
54-
</html>
55-
<!-- https://www.iloveimg.com/resize-image -->
54+
</html>

interface/src/routes/menu.svelte

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,31 +133,31 @@
133133
{
134134
title: 'WiFi Station',
135135
icon: Router,
136-
href: '/wifi/sta',
136+
href: '/network/sta',
137137
feature: true
138138
},
139139
{
140140
title: 'Access Point',
141141
icon: AP,
142-
href: '/wifi/ap',
142+
href: '/network/ap',
143143
feature: true
144144
},
145145
{
146146
title: 'Ethernet',
147147
icon: Router,
148-
href: '/wifi/ethernet',
148+
href: '/network/ethernet',
149149
feature: page.data.features.ethernet
150150
},
151151
{
152152
title: 'MQTT',
153153
icon: MQTT,
154-
href: '/connections/mqtt',
154+
href: '/network/mqtt',
155155
feature: page.data.features.mqtt
156156
},
157157
{
158158
title: 'NTP',
159159
icon: NTP,
160-
href: '/connections/ntp',
160+
href: '/network/ntp',
161161
feature: page.data.features.ntp
162162
}
163163
]
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import type { PageLoad } from './$types';
22

33
export const load = (async () => {
44
return {
5-
title: 'Access Point'
5+
title: 'WiFi Access Point'
66
};
77
}) satisfies PageLoad;

0 commit comments

Comments
 (0)