u8 DHT11_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); //ê1ÄüPA¶Ë¿úê±Öó
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11; //PA11¶Ë¿úÅäÖÃ
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //íÆíìêä3ö
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure); //3õê¼»ˉIO¿ú
GPIO_SetBits(GPIOA,GPIO_Pin_11); //PA11 êä3ö¸ß
这里让PA11端口输出高电平的目的是什么呢,是不是我DHT11的DATA线就要接在PA11上呢
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>