globalVars_conf_heatcontrol.h 879 B

123456789101112131415161718192021222324
  1. #ifdef FIRMWARE_VARIANT_HEATCONTROL
  2. struct confDataHeatc
  3. {
  4. uint8_t heatCurve[9]; // 9 bytes
  5. uint8_t heatLocktime[9]; // 18
  6. uint8_t pumpBacklash; // 19 - in minutes
  7. bool useHeatCurve; // 20
  8. bool forceHeatCurve; // 21
  9. uint8_t hystereseOff; // 22
  10. uint8_t hystereseOn; // 23
  11. uint8_t tempFeedLimit = 90; // 24
  12. bool unused_bool_var_1 = false; // 25
  13. bool forceHeatCurveAlsoForSwitchOn = false; // 26
  14. uint8_t pumpTime_forceRun = 1; // 27 - in minutes
  15. uint8_t pump_forceRunInterval = 5; // 28 - in hours
  16. uint8_t pump_forceRunTimeBegin = 10; // 29
  17. uint8_t pump_forceRunTimeEnd = 20; // 30
  18. uint8_t disableAboveTOut = 22; // 31
  19. char spare[33]; // 64
  20. } confHeatc;
  21. bool confHeatc_wasChanged;
  22. #endif