16 lines
No EOL
336 B
C
16 lines
No EOL
336 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);
|
|
|
|
double getObjecttemp();
|
|
double getAmbienttemp();
|
|
|
|
#endif |