first commit
This commit is contained in:
38
README.md
Normal file
38
README.md
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# moOde Radio Controller
|
||||||
|
|
||||||
|
Einfache Web-Oberfläche zur Steuerung des moOde Audio Players:
|
||||||
|
- **Play** / **Stop**
|
||||||
|
- **Lautstärke** (0–100)
|
||||||
|
- Automatisches Status-Polling alle 5 Sekunden
|
||||||
|
|
||||||
|
## Voraussetzungen
|
||||||
|
|
||||||
|
- Python 3.9+
|
||||||
|
- moOde Audio Player im lokalen Netzwerk
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
## Konfiguration
|
||||||
|
|
||||||
|
In `app.py` die IP-Adresse/den Hostname anpassen:
|
||||||
|
|
||||||
|
```python
|
||||||
|
MOODE_URL = "http://moode.local" # oder z.B. "http://192.168.1.42"
|
||||||
|
```
|
||||||
|
|
||||||
|
## Starten
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python app.py
|
||||||
|
```
|
||||||
|
|
||||||
|
Dann im Browser öffnen: **http://localhost:5000**
|
||||||
|
|
||||||
|
## Hinweis
|
||||||
|
|
||||||
|
Die App nutzt die interne moOde-API (`/engine/index.php`).
|
||||||
|
Stelle sicher, dass der moOde Player im selben Netzwerk erreichbar ist.
|
||||||
Reference in New Issue
Block a user