Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DS1620_improved TextLCD_improved mbed-rtos mbed
Diff: tsk_temp.h
- Revision:
- 9:645f0e517017
- Child:
- 11:e89f89c0920b
diff -r 812c2b49251f -r 645f0e517017 tsk_temp.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tsk_temp.h Mon Dec 14 11:32:15 2015 +0000
@@ -0,0 +1,14 @@
+#ifndef TSK_TEMP_H
+#define TSK_TEMP_H
+
+struct temp_data_struct {
+ uint32_t temp_raw;
+ float temperature;
+};
+
+extern struct temp_data_struct temp_data;
+
+extern void initDS1620Temp(void);
+extern void temp_thread(void const *args);
+
+#endif