ISKBoard example project
Wenxue
2025-09-02 797ac99ec7dbcd43426c2fdc4ccf0c77e0b68843
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**********************************************************************
 *   Copyright: (C)2024 LingYun IoT System Studio
 *      Author: GuoWenxue<guowenxue@gmail.com>
 *
 * Description: Temperature sensor DS18B20 driver on ISKBoard
 *
 *   ChangeLog:
 *        Version    Date       Author            Description
 *        V1.0.0  2024.08.29    GuoWenxue      Release initial version
 *
 ***********************************************************************/
 
#ifndef __DS18B20_H_
#define __DS18B20_H_
 
extern int ds18b20_sample(float *temperature);
 
#endif /* __DS18B20_H_ */