一、LED闪烁
#include "stm32f10x.h" // Device header
#include "Delay.h"
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA,&GPIO_InitStructure);
//GPIO_SetBits(GPIOA, GPIO_Pin_0);
//GPIO_ResetBits(GPIOA, GPIO_Pin_0);//置0
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_RESET);
while(1)
{
// GPIO_SetBits(GPIOA,GPIO_Pin_0);
// Delay_ms(100);
// GPIO_ResetBits(GPIOA,GPIO_Pin_0);
// Delay_ms(100);
GPIO_WriteBit(GPIOA,GPIO_Pin_0,(BitAction)1);
Delay_ms(100);
GPIO_WriteBit(GPIOA,GPIO_Pin_0,(BitAction)0);
Delay_ms(100);
}
}
注意:GPIO_WriteBit(GPIOA,GPIO_Pin_0,(BitAction)1); 相当于GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET); 前面的(BitAction)是为了把1强制转换为枚举类型(和Bit_SET同类型)
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; 推挽输出高、低电平都有驱动能力
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_DP;开漏输出高电平相当于高阻态,没有驱动能力,低电平有。
二 、LED流水灯
#include "stm32f10x.h" // Device header
#include "Delay.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
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);
}
}
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All; 一次性 初始化所有IO
三、蜂鸣器(低电平触发)
#include "stm32f10x.h" // Device header
#include "Delay.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
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);
}
}
要注意IO口的选择,这里我选的是PB12,像PA13和PA14是用来做调试的,不宜直接选来作普通IO使用,如果非要用,需要进行一定的配置。(直接用,会没反应)
使用库函数的方法
第一种
打开.h文件,control + End跳到最后看看都有哪些函数,再右键转定义查看函数的参数、用法
第二种
打开资料中的库函数用户手册,里面有所有函数的介绍和使用方法,有中文档,并且下方还有例子,要用的话可以直接复制过来用。不过要注意版本对不对应,部分用法会有些不同,但整体没差。
第三种
打开帮助文件,是全英文的
上一篇:【跟着江科大学Stm32】GPIO_按键控制LED_光敏传感器控制蜂鸣器
下一篇:STM32F103C8T6——我用错了转换器,导致串口的收到的都是乱码
推荐阅读最新更新时间:2024-11-08 03:55