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:
Tue Apr 23 18:47:47 2019 +0000
Revision:
47:229338b3adcb
Parent:
0:3c04f4b47041
Child:
48:6eac12df3ad5
Provided individual scripts per page and moved most inputs to ajax.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include <stdbool.h>
andrewboyson 0:3c04f4b47041 2
andrewboyson 47:229338b3adcb 3 extern int ProgramGetDay (int i); extern void ProgramSetDay (int i, int value);
andrewboyson 47:229338b3adcb 4 extern int ProgramGetNewDayHour(void ); extern void ProgramSetNewDayHour( int value);
andrewboyson 0:3c04f4b47041 5
andrewboyson 47:229338b3adcb 6 extern void ProgramToString(int i, int buflen, char* buffer);
andrewboyson 47:229338b3adcb 7 extern void ProgramParse (int i, char* text);
andrewboyson 0:3c04f4b47041 8
andrewboyson 47:229338b3adcb 9 extern bool ProgramTimerOutput;
andrewboyson 0:3c04f4b47041 10
andrewboyson 47:229338b3adcb 11 extern int ProgramMain(void);
andrewboyson 47:229338b3adcb 12 extern int ProgramInit(void);