Guo Wenxue
2022-09-22 732d1963ed83abf4e5f1b06ec451a6943421d716
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*********************************************************************************
 *      Copyright:  (C) 2018 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  ds18b20.h
 *    Description:  This file is temperature sensor DS18B20 code
 *                 
 *        Version:  1.0.0(2018/10/14)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "2018/10/14 12:13:26"
 *                 
 ********************************************************************************/
#ifndef __DS18B20_H_
#define __DS18B20_H_
 
 
int ds18b20_get_temperature(float *temp);
 
#endif