Initial Checkin.

Only DHT (AM3202) supported at this time.
This commit is contained in:
Pim van Pelt
2018-03-04 16:11:07 +01:00
commit 1ff7642bea
6 changed files with 178 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include "mgos_config.h"
#include "mgos_prometheus_sensors.h"
void dht_init();
bool mgos_prometheus_sensors_init(void) {
dht_init();
return true;
}