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

Revision:
0:3c04f4b47041
Child:
48:6eac12df3ad5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/heating/values.h	Thu Jan 11 17:40:08 2018 +0000
@@ -0,0 +1,19 @@
+#include <stdint.h>
+#include <time.h>
+#include <stdbool.h>
+
+extern bool    ValuesTrace;
+
+extern char*   ValuesGetServerName   (void);
+extern char*   ValuesGetFileName     (void);
+extern int     ValuesGetWriteSize    (void);
+extern int     ValuesGetReadInterval (void);
+extern int64_t ValuesGetStartTm      (struct tm* ptm);
+extern int     ValuesGetCount        (void);
+extern void    ValuesSetServerName   (char* value);
+extern void    ValuesSetFileName     (char* value);
+extern void    ValuesSetWriteSize    (int   value);
+extern void    ValuesSetReadInterval (int   value);
+
+extern void    ValuesMain(void);
+extern int     ValuesInit(void);
\ No newline at end of file