这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » stm32 按键

共1条 1/1 1 跳转至

stm32 按键

工程师
2014-09-28 19:29:04     打赏
//配置时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
//GPIO配置
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(GPIOB, &GPIO_InitStructure);
//main函数配置
void main(void)
{
  u8 ReadValue;
  RCC_Configuration();
  FLASH_Configuration();
  GPIO_Configuration();
  while(1)
  {
    ReadValue = GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_8);
  if(0x00 == ReadValue)
  {
    delay_ms(10);
    if (0x00 == ReadValue)
    GPIO_SetBits(GPIOA,GPIO_Pin_15);
  }
  else
    GPIO_ResetBits(GPIOA,GPIO_Pin_15);
  }
}

 


共1条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]