You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|