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:
58:d968191f46f2
Parent:
57:72c1c1357861
Child:
93:5ee0a1ef0279
--- a/heating/heating.c	Mon May 06 07:55:09 2019 +0000
+++ b/heating/heating.c	Tue May 07 07:42:24 2019 +0000
@@ -1,18 +1,21 @@
-#include "hall.h"
+#include "hall-pb.h"
+#include "hall-led.h"
 #include "program.h"
 #include "radiator.h"
-#include  "boiler.h"
+#include "boiler.h"
 
 void HeatingMain()
 {
-    HallMain();
+    HallPbMain();
+    HallLedMain();
     ProgramMain();
     RadiatorMain();
     BoilerMain();
 }
 void HeatingInit()
 {
-    HallInit();
+    HallPbInit();
+    HallLedInit();
     BoilerInit();
     RadiatorInit();
     ProgramInit();