STM32入门学习笔记(持续更新)
b站江协科技资料
通过网盘分享的文件:STM32入门教程资料
链接: https://pan.baidu.com/s/1-rOi83sUK8CqUNsHQuvxew?pwd=8krh 提取码: 8krh
LED灯闪烁0402
#include "stm32f10x.h" // Device header
#include "Delay.h"int main()
{RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);GPIO_InitTypeDef GPIO_InitStructure;GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(GPIOA, &GPIO_InitStructure);GPIO_ResetBits(GPIOA, GPIO_Pin_0); // 低电平GPIO_SetBits(GPIOA, GPIO_Pin_0); // 高电平while (1){GPIO_ResetBits(GPIOA, GPIO_Pin_0);Delay_ms(500);GPIO_SetBits(GPIOA, GPIO_Pin_0);Delay_ms(500);}
}
通过网盘分享的文件:stm32练习代码
链接: https://pan.baidu.com/s/1bxHl1uNLK87FojW4pdVTrg?pwd=tijy 提取码: tijy
LED流水灯0403
#include "stm32f10x.h" // Device header
#include "Delay.h"int main()
{RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);GPIO_InitTypeDef GPIO_InitStructure;GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(GPIOA, &GPIO_InitStructure);GPIO_ResetBits(GPIOA, GPIO_Pin_0); // 低电平GPIO_SetBits(GPIOA, GPIO_Pin_0); // 高电平while (1){GPIO_Write(GPIOA, ~0x0001);Delay_ms(500);GPIO_Write(GPIOA, ~0x0002);Delay_ms(500);GPIO_Write(GPIOA, ~0x0004);Delay_ms(500);GPIO_Write(GPIOA, ~0x0008);Delay_ms(500);GPIO_Write(GPIOA, ~0x0010);Delay_ms(500);GPIO_Write(GPIOA, ~0x0020);Delay_ms(500);GPIO_Write(GPIOA, ~0x0040);Delay_ms(500);GPIO_Write(GPIOA, ~0x0080);Delay_ms(500);}
}
蜂鸣器0403
#include "stm32f10x.h" // Device header
#include "Delay.h"int main()
{RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);GPIO_InitTypeDef GPIO_InitStructure;GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(GPIOB, &GPIO_InitStructure);while (1){GPIO_ResetBits(GPIOB, GPIO_Pin_11);Delay_ms(500);GPIO_SetBits(GPIOB, GPIO_Pin_11);Delay_ms(500);}
}
按键控制灯0404
#include "stm32f10x.h" // Device header
#include "Delay.h"
#include "LED.h"
#include "Key.h"uint8_t keyNum;int main()
{LED_Init();Key_Init();while (1){keyNum = Key_GetNum();if (keyNum == 1){LED1_Turn();}if (keyNum == 2){LED2_Turn();}}
}
光敏传感器控制蜂鸣器0404
#include "stm32f10x.h" // Device header
#include "Delay.h"
#include "Buzzer.h"
#include "LightSensor.h"uint8_t keyNum;int main()
{Buzzer_Init();LightSensor_Init();while (1){if (LightSensor_Get() == 1 ){Buzzer_on();}else{Buzzer_off();}}
}