Started rest server

This commit is contained in:
2017-09-14 20:06:37 +02:00
parent fc8661a68b
commit 93f4793075
6 changed files with 254 additions and 0 deletions

10
RestServer/calculate.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef calculate_H
#define calculate_H
#include "dht22.h"
float absoluteHumidity(sensor *sensor);
float absoluteHumidityFloat(float temperature, float humidity);
int compareSensors(sensor *inside, sensor *outside);
#endif