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:
Thu Jan 11 17:40:08 2018 +0000
Revision:
0:3c04f4b47041
Child:
48:6eac12df3ad5
Removed dependence on Mbed OS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include <stdint.h>
andrewboyson 0:3c04f4b47041 2 #include <time.h>
andrewboyson 0:3c04f4b47041 3 #include <stdbool.h>
andrewboyson 0:3c04f4b47041 4
andrewboyson 0:3c04f4b47041 5 extern bool ValuesTrace;
andrewboyson 0:3c04f4b47041 6
andrewboyson 0:3c04f4b47041 7 extern char* ValuesGetServerName (void);
andrewboyson 0:3c04f4b47041 8 extern char* ValuesGetFileName (void);
andrewboyson 0:3c04f4b47041 9 extern int ValuesGetWriteSize (void);
andrewboyson 0:3c04f4b47041 10 extern int ValuesGetReadInterval (void);
andrewboyson 0:3c04f4b47041 11 extern int64_t ValuesGetStartTm (struct tm* ptm);
andrewboyson 0:3c04f4b47041 12 extern int ValuesGetCount (void);
andrewboyson 0:3c04f4b47041 13 extern void ValuesSetServerName (char* value);
andrewboyson 0:3c04f4b47041 14 extern void ValuesSetFileName (char* value);
andrewboyson 0:3c04f4b47041 15 extern void ValuesSetWriteSize (int value);
andrewboyson 0:3c04f4b47041 16 extern void ValuesSetReadInterval (int value);
andrewboyson 0:3c04f4b47041 17
andrewboyson 0:3c04f4b47041 18 extern void ValuesMain(void);
andrewboyson 0:3c04f4b47041 19 extern int ValuesInit(void);