23 lines
287 B
C
23 lines
287 B
C
/*
|
|
* 18B20.h
|
|
*
|
|
* Created on: 2022年03月15日
|
|
* Author: User
|
|
*/
|
|
|
|
#ifndef __DS18B20_H_
|
|
#define __DS18B20_H_
|
|
|
|
#define DS18B20_PIN P34
|
|
|
|
typedef struct
|
|
{
|
|
uint16_t Temp;
|
|
uint8_t (*Init)(void);
|
|
uint8_t (*ReadTemp)(void);
|
|
} DS18B20_t;
|
|
|
|
extern DS18B20_t DS18B20;
|
|
|
|
#endif
|