Files
ESP32-FeuchtigkeitSensoren/docs/04_developer_notes.md
2026-03-11 21:40:51 +01:00

20 lines
697 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 🧠 Entwicklerhinweise
## Kalibrierung der Sensoren
```cpp
float V_TROCKEN = 2.80f; // Spannung an Luft
float V_NASS = 1.20f; // Spannung im Wasser
float ALERT_THRESHOLD = 70.0f; // Alarm ab 70%
```
Passe die Werte so an, dass „Trocken“ und „Nass“ korrekt erkannt werden.
## Erweiterungsideen
- **Mehr Sensoren:** bis zu 4 gleichzeitig über analoge Eingänge (GPIO 3235)
- **Bluetooth-Unterstützung:** statt WLAN kann BLE genutzt werden (z. B. via ESPHome)
- **Relaissteuerung:** Schalte Bewässerungspumpe bei Alarm automatisch ein
- **OLED-Display:** Anzeige der Feuchtewerte direkt am Gerät
📘 **Autor:** Ismail Ali
📅 Stand: November 2025
Lizenz: MIT License