在调试3.3v LCD1602的过程中,一直没有显示,只是屏幕都亮了,一下是我的代码,求助各位大神!
oled.c如下:
void LCD1602_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB |RCC_APB2Periph_GPIOC,ENABLE); //开启端口时钟,这些都是要用到的。
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;//输出模式,这个作为数据输出端口
GPIO_Init(GPIOC,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1; //pa0---rs pa1--rw
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;//这个是rs和rw控制端口
GPIO_Init(GPIOA,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //pB3 ---E
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB,&GPIO_InitStructure);
LCD_Initial();
}
void LCD_Wait(void)
{
u8 sta;
GPIO_Write(GPIOC,0xff);
RS_OFF;
RW_ON;
do
{
E_ON;
delay_ms(5); //延时5ms,非常重要
sta = GPIO_ReadInputDataBit(GPIOC, GPIO_Pin_7);//读取状态字
E_OFF;
}while(sta & 0x80);//bit7等于1表示液晶正忙,重复检测直到其等于0为止
}
void Write1602_Com(u8 com) //写命令字节
{
LCD_Wait();
RS_OFF;
// delay_ms(50);
RW_OFF;
E_OFF;//////////////////////
// delay_ms(50);
GPIO_Write(GPIOC,com); //端口赋值
delay_ms(5);
E_ON; //高脉冲
delay_ms(5);
E_OFF;
}
void Write1602_Dat(u8 dat) //写数据字节
{
LCD_Wait();
RS_ON;
// delay_ms(50);
RW_OFF;
E_OFF;/////////////////////////////
// delay_ms(50);
GPIO_Write(GPIOC,dat); //端口赋值
delay_ms(5);
E_ON; //高脉冲
delay_ms(50);
E_OFF;
}
void LCD1602_ClearScreen(void) //清屏
{
Write1602_Com(0x01);
}
void LCD1602_Set_Cursor(u8 x, u8 y) //设置光标位置
{
u8 addr;
if (y == 0)
addr = 0x00 + x;
else
addr = 0x40 + x;
Write1602_Com(addr | 0x80);
}
void LCD1602_Show_Str(u8 x, u8 y, u8 *str) //显示字节
{
LCD_Wait();
LCD1602_Set_Cursor(x, y);
while(*str != ' ')
{
Write1602_Dat(*str++);
}
}
void LCD_Initial(void) //lcd初始化
{
// LCD_Wait();
delay_ms(5);
Write1602_Com(0x38);
delay_ms(5);
Write1602_Com(0x38);
delay_ms(5);
Write1602_Com(0x38);
// delay_ms(50);
Write1602_Com(0x0c);
// delay_ms(50);
Write1602_Com(0x06);
// delay_ms(50);
Write1602_Com(0x01);
// delay_ms(50);
}
void Write1602_One_Dat(u8 x,u8 y,u8 dat)
{
x&=0x0f;
y&=0x01;
if(y)
x|=0x40;
x|=0x80;
Write1602_Com(x);
Write1602_Dat(dat);
}
void Write1602_Str(u8 addr,u8 length,u8 *pbuf)
{
u8 i;
Write1602_Com(addr);
for(i=0;i<length;i++)
{
Write1602_Dat(pbuf[i]);
}
}
oled.h如下:
#define RS_OFF GPIO_ResetBits(GPIOA,GPIO_Pin_0)
#define RS_ON GPIO_SetBits(GPIOA,GPIO_Pin_0)
#define RW_OFF GPIO_ResetBits(GPIOA,GPIO_Pin_1)
#define RW_ON GPIO_SetBits(GPIOA,GPIO_Pin_1)
#define E_OFF GPIO_ResetBits(GPIOB,GPIO_Pin_8)
#define E_ON GPIO_SetBits(GPIOB,GPIO_Pin_8)
#define RST_OFF GPIO_ResetBits(GPIOB,GPIO_Pin_2)
#define RST_ON GPIO_SetBits(GPIOB,GPIO_Pin_2)
#define PSB_OFF GPIO_ResetBits(GPIOB,GPIO_Pin_0)
#define PSB_ON GPIO_SetBits(GPIOB,GPIO_Pin_0)
void LCD_Initial(void);
void LCD_Show_Str(u8 x, u8 y, u8 *str);
void LCD_Wait(void);
void LCD_Write(u8 style, unsigned char input);
void delay(unsigned int t);
void LCD1602_Configuration(void);
void Write1602_Str(u8 addr,u8 length,u8 *pbuf);
void Write1602_Com(u8 com);
void Write1602_Dat(u8 dat);
void LCD1602_Show_Str(u8 x, u8 y, u8 *str);
void LCD1602_ClearScreen(void);
void Write1602_One_Dat(u8 x,u8 y,u8 dat);
main.c如下:
int main(void)
{
u8 code_hot[8]={0x10,0x06,0x09,0x08,0x08,0x09,0x06,0x00 }; //摄氏温度字模
u8 strMCU[]="hello world!";
delay_init(); //延时函数初始化
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
LED_Init(); //LED端口初始化
LCD1602_Configuration();
// delay_ms(1000);
// delay_ms(1000);
//Write1602_Com(0x81);
//LCD1602_ClearScreen();
// LCD1602_Show_Str(2,0,"abcv");
LCD1602_Show_Str(2,1,strMCU);
Write1602_One_Dat(2,1,'A');
Write1602_Str(0x80,1,code_hot); //摄氏温标
Write1602_Str(0x80+0x40,11,strMCU);
while(1)
{
delay_ms(1000);
LED1=!LED1;
}
}
求助各位大神!
多谢!精英版PB8是蜂鸣器,为了不让蜂鸣器响,后来改到PB3了,定义忘记改了
一周热门 更多>