Files
esp-air-monitor/components/http_server/http.h

11 lines
271 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);