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

Committer:
andrewboyson
Date:
Thu Jan 11 17:40:08 2018 +0000
Revision:
0:3c04f4b47041
Child:
48:6eac12df3ad5
Removed dependence on Mbed OS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include <stdbool.h>
andrewboyson 0:3c04f4b47041 2
andrewboyson 0:3c04f4b47041 3 extern int BoilerGetTankSetPoint(void); extern void BoilerSetTankSetPoint (int value);
andrewboyson 0:3c04f4b47041 4 extern int BoilerGetTankHysteresis(void); extern void BoilerSetTankHysteresis(int value);
andrewboyson 0:3c04f4b47041 5 extern int BoilerGetRunOnResidual(void); extern void BoilerSetRunOnResidual (int value);
andrewboyson 0:3c04f4b47041 6 extern int BoilerGetRunOnTime(void); extern void BoilerSetRunOnTime (int value);
andrewboyson 0:3c04f4b47041 7 extern char* BoilerGetTankRom(void); extern void BoilerSetTankRom (char* value);
andrewboyson 0:3c04f4b47041 8 extern char* BoilerGetOutputRom(void); extern void BoilerSetOutputRom (char* value);
andrewboyson 0:3c04f4b47041 9 extern char* BoilerGetReturnRom(void); extern void BoilerSetReturnRom (char* value);
andrewboyson 0:3c04f4b47041 10
andrewboyson 0:3c04f4b47041 11 extern bool BoilerCall;
andrewboyson 0:3c04f4b47041 12 extern bool BoilerPump;
andrewboyson 0:3c04f4b47041 13
andrewboyson 0:3c04f4b47041 14 extern int BoilerInit(void);
andrewboyson 0:3c04f4b47041 15 extern void BoilerMain(void);
andrewboyson 0:3c04f4b47041 16
andrewboyson 0:3c04f4b47041 17
andrewboyson 0:3c04f4b47041 18
andrewboyson 0:3c04f4b47041 19