Files
esp-air-monitor/components/http_server/http.h
2024-05-29 19:12:31 +01:00

13 lines
293 B
C

#pragma once
#include "dht22.h"
void init_dht22_data();
// This function presumes we've got a 10 minute average here
// - could think about abstracting the average out into this
// function maybe. Something for the future!
void add_dht22_data(float rh, float temp);
void start_server();