Central Heating controller using the real time clock, PHY module for internet, 1-wire interface for temperature sensors, a system log and a configuration file

Dependencies:   net 1-wire lpc1768 crypto clock web fram log

/media/uploads/andrewboyson/heating.sch

/media/uploads/andrewboyson/heating.brd

/media/uploads/andrewboyson/eagle.epf

Revision:
91:8b192efd0288
Parent:
48:6eac12df3ad5
Child:
104:46ce1aaf8be7
diff -r 1c504a7b465e -r 8b192efd0288 heating/boiler.h
--- a/heating/boiler.h	Thu Jun 04 16:37:59 2020 +0000
+++ b/heating/boiler.h	Wed Jun 10 10:08:06 2020 +0000
@@ -1,10 +1,10 @@
 #include <stdbool.h>
 #include <stdint.h>
 
-extern int      BoilerGetTankSetPoint      (void); extern void BoilerSetTankSetPoint  (int   value);
-extern int      BoilerGetTankHysteresis    (void); extern void BoilerSetTankHysteresis(int   value);
-extern int      BoilerGetRunOnResidual     (void); extern void BoilerSetRunOnResidual (int   value);
-extern int      BoilerGetRunOnTime         (void); extern void BoilerSetRunOnTime     (int   value);
+extern int      BoilerGetTankSetPoint      (void); extern void BoilerSetTankSetPoint      (int   value);
+extern int      BoilerGetTankHysteresis    (void); extern void BoilerSetTankHysteresis    (int   value);
+extern int      BoilerGetRunOnResidual16ths(void); extern void BoilerSetRunOnResidual16ths(int   value);
+extern int      BoilerGetRunOnTime         (void); extern void BoilerSetRunOnTime         (int   value);
 extern uint16_t BoilerGetTankDS18B20Value  (void);
 extern uint16_t BoilerGetOutputDS18B20Value(void);
 extern uint16_t BoilerGetReturnDS18B20Value(void);