ISKBoard example project
Wenxue
2025-09-02 84324a933cbf69838a284f824ef7d543c5f775d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**********************************************************************
 *   Copyright: (C)2024 LingYun IoT System Studio
 *      Author: GuoWenxue<guowenxue@gmail.com>
 *
 * Description: Temperature and humidity sensor SHT20 driver on ISKBoard
 *
 *   ChangeLog:
 *        Version    Date       Author            Description
 *        V1.0.0  2024.08.29    GuoWenxue      Release initial version
 *
 ***********************************************************************/
#ifndef __SHT20_H_
#define __SHT20_H_
 
#include <sys/types.h>
#include <stdint.h>
 
extern int sht20_sample_TrH(float *temperature, float *humdity);
 
#endif /* __SHT20_H_ */