/*********************************************************************************
|
* Copyright: (C) 2018 LingYun IoT System Studio
|
* All rights reserved.
|
*
|
* Filename: ds18b20.c
|
* 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
|
|
extern int ds18b20_get_temperature(float *temp);
|
|
#endif
|