13 lines
286 B
C
13 lines
286 B
C
|
#ifndef BODYTEMP_H_
|
||
|
#define BODYTEMP_H_
|
||
|
|
||
|
#include <Adafruit_MLX90614.h> //Adafruit MLX90614 Library by Adafruit 2.1.5
|
||
|
#include "definitions.h"
|
||
|
|
||
|
#define BODYTEMP_READ_MIN_INTERVAL 500
|
||
|
|
||
|
void initBodytemp();
|
||
|
void printBodytempDebug() ;
|
||
|
bool checkBodypresence(unsigned long millis);
|
||
|
|
||
|
#endif
|