This commit is contained in:
2026-05-02 20:54:53 +02:00
parent 638f4a7b75
commit 408da56450
14 changed files with 1271 additions and 1104 deletions

31
raspi/settings.json Normal file → Executable file
View File

@@ -7,14 +7,14 @@
},
"dashboard": {
"host": "127.0.0.1",
"host": "0.0.0.0",
"port": 8088,
"poll_interval_ms": 800,
"poll_interval_ms": 2500,
"title": "Smart Mirror"
},
"smtp": {
"enabled": true,
"enabled": false,
"host": "smtp.example.com",
"port": 587,
"use_tls": true,
@@ -29,14 +29,12 @@
"enabled": false,
"provider": "twilio",
"cooldown_s": 300,
"twilio": {
"account_sid": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"auth_token": "your_auth_token",
"from_number": "whatsapp:+14155238886",
"to_numbers": ["whatsapp:+49151XXXXXXXX"]
},
"callmebot": {
"api_key": "your_callmebot_apikey",
"to_numbers": ["+49151XXXXXXXX"]
@@ -48,7 +46,7 @@
"name": "Temperatur",
"field_index": 0,
"unit": "°C",
"threshold_high": 80.0,
"threshold_high": 40.0,
"threshold_low": -10.0,
"notify_on_high": true,
"notify_on_low": true
@@ -63,13 +61,22 @@
"notify_on_low": false
},
{
"name": "Spannung",
"name": "Regen (Analog)",
"field_index": 2,
"unit": "V",
"threshold_high": 5.5,
"threshold_low": 3.0,
"notify_on_high": true,
"notify_on_low": true
"unit": "",
"threshold_high": null,
"threshold_low": null,
"notify_on_high": false,
"notify_on_low": false
},
{
"name": "Regen (Digital)",
"field_index": 3,
"unit": "",
"threshold_high": null,
"threshold_low": null,
"notify_on_high": false,
"notify_on_low": false
}
]
}