1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| /*
| * sht20.h
| *
| * Created on: Jan 19, 2023
| * Author: Wenxue
| */
|
| #ifndef INC_SHT20_H_
| #define INC_SHT20_H_
|
| #include "i2c_bitbang.h"
|
| #define SHT2X_I2CBUS I2CBUS0 /* SHT20 on GPIO I2C bus0 */
| #define SHT2X_CHIPADDR 0x40 /* SHT20 7-Bits Chip address */
|
| #define TRH_FAIL_VAL 0xFFFFFFFF
| extern uint32_t sht20_sample_TrH(uint32_t *temperature, uint32_t *humdity);
|
| #endif /* INC_SHT20_H_ */
|
|