EMIR - Ekvitermní mikroprocesorová regulace https://code.google.com/p/emir/ https://code.google.com/p/emir/wiki/DesignV3

Dependencies:   ConfigFile DS1307 OneWire SDFileSystem USBDeviceLite mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sensor.h Source File

sensor.h

00001 #ifndef _SENSOR_H
00002 #define _SENSOR_H
00003 
00004 #define MAX_SENSORS 16
00005 
00006 extern uint8_t sensor_roms[MAX_SENSORS][8];
00007 extern int16_t sensor_temps[MAX_SENSORS];
00008 extern int sensor_count;
00009 
00010 extern Mutex sensor_mutex;
00011 
00012 extern void sensor_thread(void const *args);
00013 
00014 #endif