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

heating/radiator.h

Committer:
andrewboyson
Date:
2019-05-06
Revision:
57:72c1c1357861
Parent:
48:6eac12df3ad5
Child:
95:97621bfbedfa

File content as of revision 57:72c1c1357861:

#include <stdbool.h>
#include <stdint.h>

extern bool     RadiatorGetWinter          (void); extern void RadiatorSetWinter          (bool value); extern void RadiatorChgWinter  (void);
extern bool     RadiatorGetOverride        (void); extern void RadiatorSetOverride        (bool value); extern void RadiatorChgOverride(void);
extern uint16_t RadiatorGetHallDS18B20Value(void);

extern int      RadiatorGetNightTemperature(void); extern void RadiatorSetNightTemperature(int  value);
extern int      RadiatorGetFrostTemperature(void); extern void RadiatorSetFrostTemperature(int  value);

extern bool  RadiatorPump;

extern int   RadiatorInit(void);
extern void  RadiatorMain(void);