STM32F103C8T6通过GPIOB驱动LCD1602
时间: 2023-05-26 15:07:40 浏览: 93
以下是STM32F103C8T6通过GPIOB驱动LCD1602的步骤:
1. 连接硬件
将LCD1602的VSS和V0引脚分别连接到GND,将VDD和A相连,将RS、RW、E和D0-D7引脚分别连接到STM32F103C8T6的GPIOB引脚。
2. 初始化GPIOB
首先,需要打开GPIOB时钟,并设置每个引脚的工作模式和输出类型。例如,可以将RS、RW和E引脚设置为推挽输出,将D0-D7引脚设置为输出。
3. 配置LCD1602
在初始化GPIOB之后,需要通过向LCD1602发送指令来配置它。具体来说,需要将LCD1602设置为4位模式,并设置光标和显示模式。
4. 编写LCD操作函数
最后,需要编写C函数来执行LCD操作。例如,可以编写函数来向LCD写入字符、写入字符串和设置光标位置。在函数内部,需要先发送指令控制LCD,然后通过GPIOB输出数据来与LCD通信。
示例代码:
```c
#include "stm32f10x.h"
/* Delay function */
void Delay(__IO uint32_t nCount) {
while(nCount--) {
}
}
/* Initialize GPIOB */
void GPIOB_Init(void) {
GPIO_InitTypeDef GPIO_InitStructure;
/* enable GPIOB clock */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_10 | GPIO_Pin_11 | GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
/* Send command to LCD */
void LCD_Cmd(uint8_t cmd) {
GPIOB->ODR &= 0x00FF; // clear upper 8 bits
GPIOB->ODR |= (cmd << 8);
GPIOB->ODR &= ~(1 << 0); // RS = 0 for command mode
GPIOB->ODR &= ~(1 << 1); // RW = 0 for write mode
GPIOB->ODR |= (1 << 10); // E = 1
Delay(1000);
GPIOB->ODR &= ~(1 << 10); // E = 0
Delay(1000);
}
/* Send data to LCD */
void LCD_Data(uint8_t data) {
GPIOB->ODR &= 0x00FF; // clear upper 8 bits
GPIOB->ODR |= (data << 8);
GPIOB->ODR |= (1 << 0); // RS = 1 for data mode
GPIOB->ODR &= ~(1 << 1); // RW = 0 for write mode
GPIOB->ODR |= (1 << 10); // E = 1
Delay(1000);
GPIOB->ODR &= ~(1 << 10); // E = 0
Delay(1000);
}
/* Initialize LCD */
void LCD_Init(void) {
LCD_Cmd(0x30); // function set: 8-bit, 2-line, 5x7 dots
Delay(2000);
LCD_Cmd(0x28); // function set: 4-bit, 2-line, 5x7 dots
Delay(2000);
LCD_Cmd(0x0C); // display control: display on, cursor off, blink off
Delay(2000);
LCD_Cmd(0x01); // clear display, set DDRAM address to 0
Delay(2000);
LCD_Cmd(0x06); // entry mode set: increment mode, no shift
Delay(2000);
}
/* Write a character to LCD */
void LCD_WriteChar(uint8_t ch) {
LCD_Data(ch);
}
/* Write a string to LCD */
void LCD_WriteString(const char *str) {
while(*str) {
LCD_WriteChar(*str++);
}
}
/* Set cursor position on LCD */
void LCD_SetCursor(uint8_t col, uint8_t row) {
uint8_t addr = col | (row ? 0x40 : 0);
LCD_Cmd(0x80 | addr);
}
int main(void) {
GPIOB_Init();
LCD_Init();
LCD_SetCursor(0, 0);
LCD_WriteString("Hello, World!");
while(1) {
}
}
```
阅读全文