-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathSI7021.h
71 lines (62 loc) · 1.73 KB
/
SI7021.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
Copyright 2014 Marcus Sorensen <marcus@electron14.com>
This program is licensed, please check with the copyright holder for terms
Updated: Jul 16, 2015: TomWS1: eliminated Byte constants, fixed 'sizeof' error in _command(), added getTempAndRH() function to simplify calls for C & RH only
*/
#ifndef si7021_h
#define si7021_h
#if (ARDUINO >= 100)
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#ifdef __AVR_ATtiny85__
#include "TinyWireM.h"
#define Wire TinyWireM
#elif defined(ARDUINO_ARCH_ESP8266) || defined(ARDUINO_ARCH_ESP32)
#include <Wire.h>
#else
#if (defined(__AVR__)) || defined(ARDUINO_ARCH_NRF5)
#include <avr/pgmspace.h>
#else
#include <pgmspace.h>
#endif
#include <Wire.h>
#endif
typedef struct si7021_env {
int celsiusHundredths;
int fahrenheitHundredths;
unsigned int humidityBasisPoints;
} si7021_env;
// same as above but without fahrenheit parameter and RH %
typedef struct si7021_thc {
int celsiusHundredths;
unsigned int humidityPercent;
} si7021_thc;
class SI7021
{
public:
SI7021();
#if defined(ARDUINO_ARCH_ESP8266) || defined(ARDUINO_ARCH_ESP32)
bool begin(int SDA, int SCL);
#else
bool begin();
#endif
bool sensorExists();
int getFahrenheitHundredths();
int getCelsiusHundredths();
unsigned int getHumidityPercent();
unsigned int getHumidityBasisPoints();
struct si7021_env getHumidityAndTemperature();
struct si7021_thc getTempAndRH();
int getSerialBytes(byte * buf);
int getDeviceId();
void setPrecision(byte setting);
void setHeater(bool on);
private:
void _command(byte cmd, byte * buf );
void _writeReg(byte * reg, int reglen);
int _readReg(byte * reg, int reglen);
int _getCelsiusPostHumidity();
};
#endif