嵌入式实验二 基于STM32F103的花样流水灯

基于STM32F103的花样流水灯

  • 1、实验目的
  • 2、实验要求
  • 3、proteu仿真图
  • 4、程序代码

1、实验目的

1、 了解STM32F103微控制器的GPIO口的结构;
2、 掌握GPIO口使用的程序设计方法。
3、 掌握软件延时的编写方法。

2、实验要求

使用STM32微控制器的PB口连接发光二极管,编程实现LED灯的亮、灭。
(1)让8只发光二极管轮流闪烁
(2)让8只发光二极管朝相反的方向轮流点亮
(3)让8只发光二极管从两边开始轮流点亮
(4)让8只发光二极管从中间开始向两边轮流点亮

3、proteu仿真图

嵌入式实验二 基于STM32F103的花样流水灯_第1张图片

4、程序代码

#include "stm32f10x.h"

GPIO_InitTypeDef GPIO_InitStructure;
void delay_ms(uint32_t ms)
{
	uint32_t i_cnt,j_cnt;
	for(i_cnt=0;i_cnt<3000;i_cnt++);
	for(j_cnt=0;j_cnt<ms;j_cnt++);
	
}
uint32_t i;
int main(void)
{
  
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);

	GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7;
	GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
	GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
	GPIO_Init(GPIOC, &GPIO_InitStructure);

	GPIOC->BSRR=0xff;
	while (1)
	{
	  for(i=0;i<8;i++)
	  {
		delay_ms(99000);
		GPIOC->BRR=(1<<i);  
		  
		delay_ms(99000);
		GPIOC->BSRR=(1<<i);
	  }
	  for(i=0;i<8;i++)
	  {
		  delay_ms(99000);
		  GPIOC->BRR=0x000000ff;
		  
		  delay_ms(99000);
		  GPIOC->BSRR=0x000000ff;
		  
	  }

	}
}

附源程序:实验二 花样流水灯

你可能感兴趣的:(stm32,单片机,嵌入式硬件)