Add instructions for Wifi QR codes
This commit is contained in:
47
README.md
47
README.md
@@ -50,6 +50,52 @@ http://localhost:8080/?text=Test&size=512&errorCorrection=H
|
|||||||
http://localhost:8080/?text=Colored&foreground=%23ff0000&background=%23ffff00
|
http://localhost:8080/?text=Colored&foreground=%23ff0000&background=%23ffff00
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## WiFi QR-Codes erstellen
|
||||||
|
|
||||||
|
Die App unterstützt das Erstellen von WiFi QR-Codes, die automatisch von Smartphones erkannt werden.
|
||||||
|
|
||||||
|
### Format:
|
||||||
|
```
|
||||||
|
WIFI:S:<SSID>;T:<Verschlüsselung>;P:<Passwort>;H:<Versteckt>;;
|
||||||
|
```
|
||||||
|
|
||||||
|
### Parameter:
|
||||||
|
- **S** = SSID (Netzwerkname)
|
||||||
|
- **T** = Typ der Verschlüsselung (WPA, WEP, nopass)
|
||||||
|
- **P** = Passwort
|
||||||
|
- **H** = Versteckt (true/false) - optional
|
||||||
|
|
||||||
|
### Beispiele:
|
||||||
|
|
||||||
|
**WPA/WPA2 Netzwerk:**
|
||||||
|
```
|
||||||
|
WIFI:S:MeinWLAN;T:WPA;P:MeinPasswort123;;
|
||||||
|
```
|
||||||
|
|
||||||
|
**WEP Netzwerk:**
|
||||||
|
```
|
||||||
|
WIFI:S:MeinWLAN;T:WEP;P:1234567890;;
|
||||||
|
```
|
||||||
|
|
||||||
|
**Offenes Netzwerk (ohne Passwort):**
|
||||||
|
```
|
||||||
|
WIFI:S:MeinWLAN;T:nopass;;
|
||||||
|
```
|
||||||
|
|
||||||
|
**Verstecktes Netzwerk:**
|
||||||
|
```
|
||||||
|
WIFI:S:MeinWLAN;T:WPA;P:MeinPasswort123;H:true;;
|
||||||
|
```
|
||||||
|
|
||||||
|
### Verwendung:
|
||||||
|
1. Kopieren Sie einen der obigen Texte
|
||||||
|
2. Ersetzen Sie die Werte durch Ihre eigenen WiFi-Daten
|
||||||
|
3. Fügen Sie den Text in das Eingabefeld ein
|
||||||
|
4. Der QR-Code wird automatisch generiert
|
||||||
|
5. Scannen Sie ihn mit einem Smartphone
|
||||||
|
|
||||||
|
Das Smartphone erkennt automatisch, dass es sich um WiFi-Daten handelt und bietet an, sich mit dem Netzwerk zu verbinden!
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- ✅ Vollständig clientseitig (keine Server-Kommunikation)
|
- ✅ Vollständig clientseitig (keine Server-Kommunikation)
|
||||||
@@ -58,3 +104,4 @@ http://localhost:8080/?text=Colored&foreground=%23ff0000&background=%23ffff00
|
|||||||
- ✅ Verschiedene Fehlerkorrektur-Level
|
- ✅ Verschiedene Fehlerkorrektur-Level
|
||||||
- ✅ Download-Funktion
|
- ✅ Download-Funktion
|
||||||
- ✅ Responsive Design
|
- ✅ Responsive Design
|
||||||
|
- ✅ WiFi QR-Code Unterstützung
|
Reference in New Issue
Block a user