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:
57:72c1c1357861
Removed dependence on Mbed OS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include "program.h"
andrewboyson 0:3c04f4b47041 2 #include "radiator.h"
andrewboyson 0:3c04f4b47041 3 #include "boiler.h"
andrewboyson 0:3c04f4b47041 4
andrewboyson 0:3c04f4b47041 5 void HeatingMain()
andrewboyson 0:3c04f4b47041 6 {
andrewboyson 0:3c04f4b47041 7 ProgramMain();
andrewboyson 0:3c04f4b47041 8 RadiatorMain();
andrewboyson 0:3c04f4b47041 9 BoilerMain();
andrewboyson 0:3c04f4b47041 10 }
andrewboyson 0:3c04f4b47041 11 void HeatingInit()
andrewboyson 0:3c04f4b47041 12 {
andrewboyson 0:3c04f4b47041 13 BoilerInit();
andrewboyson 0:3c04f4b47041 14 RadiatorInit();
andrewboyson 0:3c04f4b47041 15 ProgramInit();
andrewboyson 0:3c04f4b47041 16 }