NHS31xx SW API
humid.h
1 /*
2  * Copyright 2018-2019 NXP
3  * This software is owned or controlled by NXP and may only be used strictly
4  * in accordance with the applicable license terms. By expressly accepting
5  * such terms or by downloading, installing, activating and/or otherwise using
6  * the software, you are agreeing that you have read, and that you agree to
7  * comply with and are bound by, such license terms. If you do not agree to
8  * be bound by the applicable license terms, then you may not retain, install,
9  * activate or otherwise use the software.
10  */
11 
12 #ifndef __HUMID_H_
13 #define __HUMID_H_
14 
38 #include "humid/humid_dft.h"
39 
41 #define HUMID_RESET_WAIT_TIME 15 /* ms. The maximum time per the datasheet to reach the idle state. */
42 
44 #define HUMID_MEASURE_WAIT_TIME 16 /* ms. The maximum measuring time per the datasheet at maximum resolution. */
45 
46 /* ------------------------------------------------------------------------- */
47 
57 void Humid_Init(void);
58 
65 void Humid_DeInit(void);
66 
72 void Humid_Reset(void);
73 
79 void Humid_Measure(void);
80 
86 unsigned int Humid_Get(void);
87 
88 #endif
void Humid_Reset(void)
void Humid_Init(void)
void Humid_DeInit(void)
unsigned int Humid_Get(void)
void Humid_Measure(void)