haustorial/prosthesis_controller/bodytemp.h

16 lines
336 B
C
Raw Normal View History

2024-09-11 09:40:46 +00:00
#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);
2024-09-12 09:23:52 +00:00
double getObjecttemp();
double getAmbienttemp();
2024-09-11 09:40:46 +00:00
#endif