论坛元老
- 积分
- 4471
- 金钱
- 4471
- 注册时间
- 2013-4-22
- 在线时间
- 335 小时
|
发表于 2020-5-24 12:13:32
|
显示全部楼层
肯定需要的,只是单总线协议的器件,建议都改一下
u8 DS18B20_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOG, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOG, &GPIO_InitStructure);
GPIO_SetBits(GPIOG,GPIO_Pin_11);
DS18B20_Rst();
return DS18B20_Check();
}
|
|