工程示例(LED、流水灯、蜂鸣器)

LED闪烁

工程示例(LED、流水灯、蜂鸣器)_第1张图片

#include "stm32f10x.h"                  // Device header
#include "Delay.h"

int main(void)
{
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
	
	GPIO_InitTypeDef GPIO_InitSructure;
	GPIO_InitSructure.GPIO_Mode = GPIO_Mode_Out_PP;
	GPIO_InitSructure.GPIO_Pin = GPIO_Pin_0;
	GPIO_InitSructure.GPIO_Speed = GPIO_Speed_50MHz;
	GPIO_Init(GPIOA,&GPIO_InitSructure);
	
	GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_RESET);   //RESET亮
	//GPIO_SetBits(GPIOA,GPIO_Pin_0);       //灭
	//GPIO_ResetBits(GPIOA,GPIO_Pin_0);  //亮 
	
	while(1)
	{
		GPIO_ResetBits(GPIOA,GPIO_Pin_0);  //亮 
		Delay_ms(500);
		GPIO_SetBits(GPIOA,GPIO_Pin_0);       //灭
		Delay_ms(500);
		
		GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_RESET); 
		Delay_ms(500);
		GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET); 
		Delay_ms(500);
	}
}

流水灯

工程示例(LED、流水灯、蜂鸣器)_第2张图片

#include "stm32f10x.h"                  // Device header
#include "Delay.h"

int main(void)
{
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
	
	GPIO_InitTypeDef GPIO_InitSructure;
	GPIO_InitSructure.GPIO_Mode = GPIO_Mode_Out_PP;
	GPIO_InitSructure.GPIO_Pin = GPIO_Pin_All;
	GPIO_InitSructure.GPIO_Speed = GPIO_Speed_50MHz;
	GPIO_Init(GPIOA,&GPIO_InitSructure);
	
	//点灯
	//GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET);   //RESET亮      
	//GPIO_SetBits(GPIOA,GPIO_Pin_0);       //灭
	//GPIO_ResetBits(GPIOA,GPIO_Pin_0);  //亮 
	
	while(1)
	{
		GPIO_Write(GPIOA,~0x0001);  //0000 0000 0000 0001
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0002); //0000 0000 0000 0010
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0004); //0000 0000 0000 0100
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0008); //0000 0000 0000 1000
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0010); //0000 0000 0001 0000
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0020); //0000 0000 0010 0000
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0040); //0000 0000 0100 0000
		Delay_ms(100);
		GPIO_Write(GPIOA,~0x0080); //0000 0000 1000 0000
		Delay_ms(100);
	}
}

蜂鸣器

工程示例(LED、流水灯、蜂鸣器)_第3张图片

#include "stm32f10x.h"                  // Device header
#include "Delay.h"

int main(void)
{
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
	
	GPIO_InitTypeDef GPIO_InitSructure;
	GPIO_InitSructure.GPIO_Mode = GPIO_Mode_Out_PP;
	GPIO_InitSructure.GPIO_Pin = GPIO_Pin_12;
	GPIO_InitSructure.GPIO_Speed = GPIO_Speed_50MHz;
	GPIO_Init(GPIOB,&GPIO_InitSructure);
	

	
	while(1)
	{
		GPIO_ResetBits(GPIOB,GPIO_Pin_12);  
		Delay_ms(100);
		GPIO_SetBits(GPIOB,GPIO_Pin_12);       
		Delay_ms(100);
		GPIO_ResetBits(GPIOB,GPIO_Pin_12);  
		Delay_ms(100);
		GPIO_SetBits(GPIOB,GPIO_Pin_12);       
		Delay_ms(700);
	}
}

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