16 lines
559 B
Python
16 lines
559 B
Python
|
configs = {
|
||
|
'country': 'AT',
|
||
|
'ntp_host': 'pool.ntp.org',
|
||
|
'gmt_offset': 1,
|
||
|
'auto_summertime': True,
|
||
|
'disable_wifi_powersavingmode': True,
|
||
|
'api_port': 80,
|
||
|
'hostname': 'watering',
|
||
|
'log_housekeeping_days': 7,
|
||
|
'api_client_ip': '',
|
||
|
'pulse_duration': 15, #seconds
|
||
|
'soil_moisture_measure_interval': 20, #minutes
|
||
|
'soil_dry_value': 11500, #soil is dry above this value
|
||
|
'check_for_update': 60, #minutes
|
||
|
'ota_host': 'http://192.168.1.132' #http://ip-of-your-update-host - leave empty to disable
|
||
|
}
|