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:
Fri Apr 23 08:36:42 2021 +0000
Revision:
106:41ed3ea0bbba
Parent:
93:5ee0a1ef0279
Not working, crashes.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 58:d968191f46f2 1 #include "hall-pb.h"
andrewboyson 58:d968191f46f2 2 #include "hall-led.h"
andrewboyson 57:72c1c1357861 3 #include "program.h"
andrewboyson 0:3c04f4b47041 4 #include "radiator.h"
andrewboyson 58:d968191f46f2 5 #include "boiler.h"
andrewboyson 93:5ee0a1ef0279 6 #include "hot-water.h"
andrewboyson 0:3c04f4b47041 7
andrewboyson 0:3c04f4b47041 8 void HeatingMain()
andrewboyson 0:3c04f4b47041 9 {
andrewboyson 58:d968191f46f2 10 HallPbMain();
andrewboyson 58:d968191f46f2 11 HallLedMain();
andrewboyson 0:3c04f4b47041 12 ProgramMain();
andrewboyson 0:3c04f4b47041 13 RadiatorMain();
andrewboyson 0:3c04f4b47041 14 BoilerMain();
andrewboyson 0:3c04f4b47041 15 }
andrewboyson 0:3c04f4b47041 16 void HeatingInit()
andrewboyson 0:3c04f4b47041 17 {
andrewboyson 58:d968191f46f2 18 HallPbInit();
andrewboyson 58:d968191f46f2 19 HallLedInit();
andrewboyson 0:3c04f4b47041 20 BoilerInit();
andrewboyson 0:3c04f4b47041 21 RadiatorInit();
andrewboyson 0:3c04f4b47041 22 ProgramInit();
andrewboyson 93:5ee0a1ef0279 23 HotWaterInit();
andrewboyson 0:3c04f4b47041 24 }