高中生
最后登录1970-1-1
在线时间 小时
注册时间2016-11-3
|
楼主 |
发表于 2016-11-3 09:28:17
|
显示全部楼层
板子用的是STM32-MINI-V3
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOE, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_Init(GPIOE, &GPIO_InitStructure);
if(GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_6)==0)
{
LED1_ON;
}
if(GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_6)==1)
{
LED2_ON;
}
|
|