13 lines
293 B
C
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();
|