chore: reorganize source organization to a more modern style

This commit is contained in:
A.M. Rowsell 2026-06-30 06:21:52 -04:00
commit 0425836642
12 changed files with 16 additions and 10 deletions

11
include/aht.h Normal file
View file

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