10 lines
129 B
C
10 lines
129 B
C
#ifndef AHT_H
|
|
#define AHT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define AHT_ADDR 0x38
|
|
|
|
void getAHTData(double *t, double *h);
|
|
|
|
#endif // AHT_H
|