-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSHT2x.h
59 lines (46 loc) · 1.51 KB
/
SHT2x.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
/*
SHT2x - Humidity Library for Arduino.
Get humidity and temperature from the HTU21D/SHT2x sensors.
Hardware Setup:
Attach the SDA pin to A4, SCL to A5.
Software:
Call SHT2x.Begin() in setup.
SHT2x.ReadHumidity() will return a float containing the humidity. Ex: 54.7
SHT2x.ReadTemperature() will return a float containing the temperature in Celsius. Ex: 24.1
SHT2x.SetResolution(byte: 0b.76543210) sets the resolution of the readings.
Copyright (C) 2015 Nuno Chaveiro nchaveiro[at]gmail.com Lisbon, Portugal
*/
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include <Wire.h>
#ifndef SHT2X_H
#define SHT2X_H
#define HTDU21D_ADDRESS 0x40 //Unshifted 7-bit I2C address for the sensor
#define TRIGGER_TEMP_MEASURE_HOLD 0xE3
#define TRIGGER_HUMD_MEASURE_HOLD 0xE5
#define TRIGGER_TEMP_MEASURE_NOHOLD 0xF3
#define TRIGGER_HUMD_MEASURE_NOHOLD 0xF5
#define WRITE_USER_REG 0xE6
#define READ_USER_REG 0xE7
#define SOFT_RESET 0xFE
#define ERROR_CRC 998
#define ERROR_TIMEOUT 999
class SHT2x
{
public:
//Public Functions
SHT2x();
void begin();
float GetHumidity(void);
float GetTemperature(void);
void setResolution(uint8_t resBits);
uint8_t read_user_register(void);
uint16_t readSensor(uint8_t command);
private:
//Private Functions
uint8_t check_crc(uint16_t message_from_sensor, uint8_t check_value_from_sensor);
};
#endif