90 lines
1.9 KiB
JSON
Executable File
90 lines
1.9 KiB
JSON
Executable File
{
|
|
"usb": {
|
|
"port": "/dev/ttyACM0",
|
|
"baud_rate": 9600,
|
|
"reconnect_delay_s": 3,
|
|
"buffer_size": 200
|
|
},
|
|
|
|
"dashboard": {
|
|
"host": "0.0.0.0",
|
|
"port": 8088,
|
|
"poll_interval_ms": 2500,
|
|
"title": "Smart Mirror"
|
|
},
|
|
|
|
"location": {
|
|
"name": "Dillingen / Saar",
|
|
"latitude": 49.357,
|
|
"longitude": 6.731,
|
|
"weather_refresh_s": 600
|
|
},
|
|
|
|
"smtp": {
|
|
"enabled": false,
|
|
"host": "smtp.example.com",
|
|
"port": 587,
|
|
"use_tls": true,
|
|
"username": "alerts@example.com",
|
|
"password": "secret",
|
|
"from_address": "alerts@example.com",
|
|
"to_addresses": ["admin@example.com"],
|
|
"cooldown_s": 300
|
|
},
|
|
|
|
"whatsapp": {
|
|
"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"]
|
|
}
|
|
},
|
|
|
|
"sensors": [
|
|
{
|
|
"name": "Temperatur",
|
|
"field_index": 0,
|
|
"unit": "°C",
|
|
"threshold_high": 40.0,
|
|
"threshold_low": -10.0,
|
|
"notify_on_high": true,
|
|
"notify_on_low": true
|
|
},
|
|
{
|
|
"name": "Luftfeuchtigkeit",
|
|
"field_index": 1,
|
|
"unit": "%",
|
|
"threshold_high": 95.0,
|
|
"threshold_low": null,
|
|
"notify_on_high": true,
|
|
"notify_on_low": false
|
|
},
|
|
{
|
|
"name": "Regen (Analog)",
|
|
"field_index": 2,
|
|
"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
|
|
}
|
|
]
|
|
}
|