mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-28 04:07:47 +00:00
* switched the library, now uses a library which correctly handles negative temperatures * minor change
18 lines
182 B
C++
18 lines
182 B
C++
#ifndef AM2320_H
|
|
#define AM2320_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
#define AM2320_address (0xB8 >> 1)
|
|
|
|
class AM2320
|
|
{
|
|
public:
|
|
AM2320();
|
|
float t;
|
|
float h;
|
|
int Read(void);
|
|
};
|
|
|
|
#endif
|