Andrew Boyson / oldheating

Dependencies:   net 1-wire lpc1768 crypto clock web fram log

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers heating.c Source File

heating.c

00001 #include "hall-pb.h"
00002 #include "hall-led.h"
00003 #include "program.h"
00004 #include "radiator.h"
00005 #include "boiler.h"
00006 #include "hot-water.h"
00007 
00008 void HeatingMain()
00009 {
00010     HallPbMain();
00011     HallLedMain();
00012     ProgramMain();
00013     RadiatorMain();
00014     BoilerMain();
00015 }
00016 void HeatingInit()
00017 {
00018     HallPbInit();
00019     HallLedInit();
00020     BoilerInit();
00021     RadiatorInit();
00022     ProgramInit();
00023     HotWaterInit();
00024 }