Controls the central heating system and the lights.

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

heating/heating.c

Committer:
andrewboyson
Date:
18 months ago
Revision:
8:8ac076ce51af
Parent:
0:22b158d3c76f

File content as of revision 8:8ac076ce51af:

#include "hall-pb.h"
#include "hall-led.h"
#include "program.h"
#include "radiator.h"
#include "boiler.h"
#include "hot-water.h"

void HeatingMain()
{
    HallPbMain();
    HallLedMain();
    ProgramMain();
    RadiatorMain();
    BoilerMain();
}
void HeatingInit()
{
    HallPbInit();
    HallLedInit();
    BoilerInit();
    RadiatorInit();
    ProgramInit();
    HotWaterInit();
}