You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
536 B
22 lines
536 B
2 years ago
|
/**
|
||
|
* TODO file description
|
||
|
*/
|
||
|
|
||
|
#include "app_config.h"
|
||
|
|
||
|
// TODO sensible defaults, loading and saving to/from EE
|
||
|
struct AppConfig app_config = {
|
||
|
.circuit_base_time_s = 10, // for a test
|
||
|
.circuit_time_percent = {30, 60, 90, 100}, // for a test
|
||
|
.schedules = {
|
||
|
{6, 45},
|
||
|
{255, 0},
|
||
|
{255, 0},
|
||
|
{255, 0}
|
||
|
},
|
||
|
.moisture_enable = true,
|
||
|
.moisture_dry = 2800,
|
||
|
.moisture_wet = 1600,
|
||
|
.moisture_threshold_percent = 70,
|
||
|
};
|