stm32f1系列使用HC-05蓝牙模块点灯代码
时间: 2023-07-30 14:07:41 浏览: 82
以下是使用STM32F1系列微控制器和HC-05蓝牙模块进行点灯的示例代码:
```c
#include "stm32f10x.h"
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
// 开启GPIOC的时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
// 配置PC13为推挽输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
}
void USART1_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
// 开启USART1和GPIOA的时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
// 配置PA9为复用推挽输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置PA10为浮空输入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1
USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART1, &USART_InitStructure);
// 开启USART1
USART_Cmd(USART1, ENABLE);
}
void USART1_SendChar(uint8_t ch)
{
USART_SendData(USART1, (uint8_t)ch);
// 等待发送完成
while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
}
int main(void)
{
GPIO_Configuration();
USART1_Configuration();
while (1)
{
char receivedData;
// 等待接收到数据
while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET);
// 读取接收到的数据
receivedData = USART_ReceiveData(USART1);
// 如果接收到的数据是 '1',则点亮LED
if (receivedData == '1')
{
GPIO_SetBits(GPIOC, GPIO_Pin_13);
USART1_SendChar('L');
}
// 如果接收到的数据是 '0',则熄灭LED
else if (receivedData == '0')
{
GPIO_ResetBits(GPIOC, GPIO_Pin_13);
USART1_SendChar('H');
}
}
}
```
这段代码使用USART1与HC-05蓝牙模块进行通信,接收到的数据为'1'时点亮PC13引脚上的LED灯,接收到的数据为'0'时熄灭LED灯。请确保已正确配置时钟和引脚。
阅读全文