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 26 16:40:19 2019 +0000
Revision:
48:6eac12df3ad5
Parent:
0:3c04f4b47041
Child:
91:8b192efd0288
Moved 1-wire to its own library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include <stdbool.h>
andrewboyson 48:6eac12df3ad5 2 #include <stdint.h>
andrewboyson 0:3c04f4b47041 3
andrewboyson 48:6eac12df3ad5 4 extern int BoilerGetTankSetPoint (void); extern void BoilerSetTankSetPoint (int value);
andrewboyson 48:6eac12df3ad5 5 extern int BoilerGetTankHysteresis (void); extern void BoilerSetTankHysteresis(int value);
andrewboyson 48:6eac12df3ad5 6 extern int BoilerGetRunOnResidual (void); extern void BoilerSetRunOnResidual (int value);
andrewboyson 48:6eac12df3ad5 7 extern int BoilerGetRunOnTime (void); extern void BoilerSetRunOnTime (int value);
andrewboyson 48:6eac12df3ad5 8 extern uint16_t BoilerGetTankDS18B20Value (void);
andrewboyson 48:6eac12df3ad5 9 extern uint16_t BoilerGetOutputDS18B20Value(void);
andrewboyson 48:6eac12df3ad5 10 extern uint16_t BoilerGetReturnDS18B20Value(void);
andrewboyson 0:3c04f4b47041 11
andrewboyson 48:6eac12df3ad5 12 extern bool BoilerCall;
andrewboyson 48:6eac12df3ad5 13 extern bool BoilerPump;
andrewboyson 0:3c04f4b47041 14
andrewboyson 48:6eac12df3ad5 15 extern int BoilerInit(void);
andrewboyson 48:6eac12df3ad5 16 extern void BoilerMain(void);
andrewboyson 0:3c04f4b47041 17
andrewboyson 0:3c04f4b47041 18
andrewboyson 0:3c04f4b47041 19
andrewboyson 0:3c04f4b47041 20