/**********************************************************************
|
* Copyright: (C)2023 LingYun IoT System Studio
|
* Author: GuoWenxue<guowenxue@gmail.com> QQ: 281143292
|
* Description: ISKBoard DS18B20 temperature sensor Hardware Abstract Layer driver
|
*
|
* ChangeLog:
|
* Version Date Author Description
|
* V1.0.0 2023.04.3 GuoWenxue Release initial version
|
***********************************************************************/
|
|
#ifndef INC_DS18B20_H_
|
#define INC_DS18B20_H_
|
|
extern int ds18b20_sample(float *temperature);
|
|
#endif /* INC_DS18B20_H_ */
|