#define onoff110 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_0)
void onoff1_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能PB,PE端口时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; //PB0端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //上拉
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
main:
BEEP_Init(); //初始化蜂鸣器端口
onoff1_Init(); //初始化PB0
if(onoff110==0)
GPIO_ResetBits(GPIOB,GPIO_Pin_8);
else if(onoff110!=0)
GPIO_SetBits(GPIOB,GPIO_Pin_8);
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>