forked from Elron_dev/elbear_arduino_bsp
16 lines
246 B
C++
16 lines
246 B
C++
#ifndef __AHT10_H
|
|
#define __AHT10_H
|
|
|
|
#include <Wire.h>
|
|
|
|
class AHT10 {
|
|
public:
|
|
static bool begin();
|
|
static bool reset();
|
|
static bool measure(float *temp, float *hum);
|
|
static float getTemperature();
|
|
static float getHumidity();
|
|
};
|
|
|
|
#endif
|