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
tsk_temp.h
- Committer:
- dzoni
- Date:
- 2015-12-14
- Revision:
- 9:645f0e517017
- Child:
- 11:e89f89c0920b
File content as of revision 9:645f0e517017:
#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