Initial commit ESP32 Feuchtigkeit Sensor Projekt
This commit is contained in:
19
docs/04_developer_notes.md
Normal file
19
docs/04_developer_notes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# 🧠 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 32–35)
|
||||
- **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
|
||||
Reference in New Issue
Block a user