用stm32的pb1引脚接led灯,一直亮是为什么
时间: 2024-05-31 13:14:03 浏览: 261
stm32的PB1引脚默认是推挽输出模式,其输出电平可以通过程序控制,如果一直亮的话,可能是以下几个原因:
1. 程序中PB1引脚被设置为高电平,导致LED一直亮。
2. LED连接反了,即正极被连接到了GND,负极连接到了PB1引脚,导致LED一直亮。
3. LED或者电阻损坏,导致LED一直亮。
你可以检查一下上述几个方面,找到问题所在并进行修复。
相关问题
使用stm32cbeMX配置STM32F103ZE详细步骤,按键KEY1按下,4个LED灯依次点亮;按键KEY2按下,4个LED灯不断闪烁。LED灯分别连接到PA0~PA3,将KEY1连接到PB0引脚,将KEY2连接到PB1引脚。
好的,我会为您提供配置STM32F103ZE的详细步骤!
1. 打开STM32CubeMX软件,新建一个工程,选择STM32F103ZE型号,点击“Start Project”按钮。
2. 在“Pinout & Configuration”选项卡中,将PA0~PA3的模式设置为GPIO输出,PB0和PB1的模式设置为GPIO输入。
3. 在“Configuration”选项卡中,将System Core Clock设置为72MHz,使其与STM32F103ZE芯片的主频相匹配。
4. 在“NVIC Settings”选项卡中,开启EXTI0和EXTI1的中断。
5. 在“Project Manager”选项卡中,生成代码并打开工程。
6. 在工程中添加以下代码:
```
#include "stm32f10x.h"
void EXTI0_IRQHandler(void)
{
if (EXTI_GetITStatus(EXTI_Line0) != RESET) {
GPIO_SetBits(GPIOA, GPIO_Pin_0);
for (int i = 1; i <= 3; i++) {
GPIO_SetBits(GPIOA, GPIO_Pin_i);
Delay(500);
GPIO_ResetBits(GPIOA, GPIO_Pin_i);
}
EXTI_ClearITPendingBit(EXTI_Line0);
}
}
void EXTI1_IRQHandler(void)
{
if (EXTI_GetITStatus(EXTI_Line1) != RESET) {
while(1) {
GPIO_SetBits(GPIOA, GPIO_Pin_All);
Delay(500);
GPIO_ResetBits(GPIOA, GPIO_Pin_All);
Delay(500);
}
EXTI_ClearITPendingBit(EXTI_Line1);
}
}
void Delay(uint32_t nCount)
{
for (uint32_t i = 0; i < nCount; i++);
}
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
EXTI_InitTypeDef EXTI_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
EXTI_InitStructure.EXTI_Line = EXTI_Line0;
EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
EXTI_InitStructure.EXTI_LineCmd = ENABLE;
EXTI_Init(&EXTI_InitStructure);
EXTI_InitStructure.EXTI_Line = EXTI_Line1;
EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
EXTI_InitStructure.EXTI_LineCmd = ENABLE;
EXTI_Init(&EXTI_InitStructure);
NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0x00;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0x00;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
NVIC_InitStructure.NVIC_IRQChannel = EXTI1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0x00;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0x00;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
while (1) {
}
}
```
7. 编译并下载程序到STM32F103ZE芯片中。
8. 将KEY1连接到PB0引脚,将KEY2连接到PB1引脚,将LED灯连接到PA0~PA3引脚。
9. 按下KEY1,4个LED灯依次点亮;按下KEY2,4个LED灯不断闪烁。
希望这个步骤能够帮助您完成STM32F103ZE的配置,如果您还有其他问题,欢迎您继续提问!
假设某目标板有 4 个 LED 灯(LED1 与 PBO 引脚连接,LED2 与 PB1 引脚连接,LED3 写PC: ^LED 灯从右到左依次点亮的显示效果。 引脚连接,LED4 与 PF13 引脚连接),有 2 个按键(KEY1 与 PAO 引脚连接,KEY2 与 PC13 引脚连接),编写 4 个 LED 灯和 2 个 KEY 按键的 初始化配置函数编写如下显示效果的主程序:4个LED灯依次点亮,然后4个LED灯 不断闪烁,接着重复依次点亮和不断闪烁。
好的,我来解答这个问题。
首先,我们需要初始化这些引脚。以下是初始化这些引脚的代码:
```c
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA | RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC | RCC_AHB1Periph_GPIOF, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_Init(GPIOC, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOC, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_Init(GPIOF, &GPIO_InitStructure);
}
void KEY_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA | RCC_AHB1Periph_GPIOC, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_Init(GPIOC, &GPIO_InitStructure);
}
```
接下来是主程序:
```c
#include "stm32f4xx.h"
#include "stm32f4xx_conf.h"
#include <stdio.h>
#define LED1_ON() GPIO_SetBits(GPIOA, GPIO_Pin_0)
#define LED1_OFF() GPIO_ResetBits(GPIOA, GPIO_Pin_0)
#define LED2_ON() GPIO_SetBits(GPIOB, GPIO_Pin_1)
#define LED2_OFF() GPIO_ResetBits(GPIOB, GPIO_Pin_1)
#define LED3_ON() GPIO_SetBits(GPIOC, GPIO_Pin_3)
#define LED3_OFF() GPIO_ResetBits(GPIOC, GPIO_Pin_3)
#define LED4_ON() GPIO_SetBits(GPIOF, GPIO_Pin_13)
#define LED4_OFF() GPIO_ResetBits(GPIOF, GPIO_Pin_13)
#define KEY1() GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0)
#define KEY2() GPIO_ReadInputDataBit(GPIOC, GPIO_Pin_13)
void LED_Init(void);
void KEY_Init(void);
int main(void)
{
LED_Init();
KEY_Init();
// 点亮4个LED灯
LED1_ON();
LED2_ON();
LED3_ON();
LED4_ON();
Delay(2000000);
LED1_OFF();
LED2_OFF();
LED3_OFF();
LED4_OFF();
Delay(2000000);
while (1)
{
// 闪烁4个LED灯
LED1_ON();
LED2_ON();
LED3_ON();
LED4_ON();
Delay(500000);
LED1_OFF();
LED2_OFF();
LED3_OFF();
LED4_OFF();
Delay(500000);
// 依次点亮4个LED灯
LED1_ON();
Delay(1000000);
LED1_OFF();
LED2_ON();
Delay(1000000);
LED2_OFF();
LED3_ON();
Delay(1000000);
LED3_OFF();
LED4_ON();
Delay(1000000);
LED4_OFF();
}
}
```
在这个程序中,我们使用了 `Delay()` 函数来控制 LED 灯的闪烁和点亮时间。你可以根据需要调整这个函数的参数来改变闪烁和点亮的时间。
另外,我们也使用了宏定义来简化代码。你可以根据需要修改这些宏定义来改变 LED 灯和按键的连接引脚。
希望我的回答对你有所帮助!
阅读全文