restructure: splitting out sensor functions into their own source files

This commit is contained in:
A.M. Rowsell 2026-06-27 14:12:43 -04:00
commit a6211b4c9d
8 changed files with 184 additions and 70 deletions

10
aht.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef AHT_H
#define AHT_H
#include <stdint.h>
#define AHT_ADDR 0x38
void getAHTData(double *t, double *h);
#endif // AHT_H