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

heating/boiler.h

Committer:
andrewboyson
Date:
2018-01-11
Revision:
0:3c04f4b47041
Child:
48:6eac12df3ad5

File content as of revision 0:3c04f4b47041:

#include <stdbool.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 char* BoilerGetTankRom(void);        extern void BoilerSetTankRom       (char* value);
extern char* BoilerGetOutputRom(void);      extern void BoilerSetOutputRom     (char* value);
extern char* BoilerGetReturnRom(void);      extern void BoilerSetReturnRom     (char* value);

extern bool  BoilerCall;
extern bool  BoilerPump;

extern int   BoilerInit(void);
extern void  BoilerMain(void);