#include "oled.h" #include "stdlib.h" #include "oledfont.h" #include "delay.h" u8 OLED_GRAM[128][8]; /************************************************************************** Function: Refresh the OLED screen Input : none Output : none 函数功能:刷新OLED屏幕 入口参数:无 返回 值:无 **************************************************************************/ void OLED_Refresh_Gram(void) { u8 i,n; for(i=0;i<8;i++) { OLED_WR_Byte (0xb0+i,OLED_CMD); //Set page address (0~7) //设置页地址(0~7) OLED_WR_Byte (0x00,OLED_CMD); //Set the display location - column low address //设置显示位置—列低地址 OLED_WR_Byte (0x10,OLED_CMD); //Set the display location - column height address //设置显示位置—列高地址 for(n=0;n<128;n++)OLED_WR_Byte(OLED_GRAM[n][i],OLED_DATA); } } /************************************************************************** Function: Refresh the OLED screen Input : Dat: data/command to write, CMD: data/command flag 0, represents the command;1, represents data Output : none 函数功能:向OLED写入一个字节 入口参数:dat:要写入的数据/命令,cmd:数据/命令标志 0,表示命令;1,表示数据 返回 值:无 **************************************************************************/ void OLED_WR_Byte(u8 dat,u8 cmd) { u8 i; if(cmd) OLED_RS_Set(); else OLED_RS_Clr(); for(i=0;i<8;i++) { OLED_SCLK_Clr(); if(dat&0x80) OLED_SDIN_Set(); else OLED_SDIN_Clr(); OLED_SCLK_Set(); dat<<=1; } OLED_RS_Set(); } /************************************************************************** Function: Turn on the OLED display Input : none Output : none 函数功能:开启OLED显示 入口参数:无 返回 值:无 **************************************************************************/ void OLED_Display_On(void) { OLED_WR_Byte(0X8D,OLED_CMD); //SET DCDC command //SET DCDC命令 OLED_WR_Byte(0X14,OLED_CMD); //DCDC ON OLED_WR_Byte(0XAF,OLED_CMD); //DISPLAY ON } /************************************************************************** Function: Turn off the OLED display Input : none Output : none 函数功能:关闭OLED显示 入口参数:无 返回 值:无 **************************************************************************/ void OLED_Display_Off(void) { OLED_WR_Byte(0X8D,OLED_CMD); //SET DCDC command //SET DCDC命令 OLED_WR_Byte(0X10,OLED_CMD); //DCDC OFF OLED_WR_Byte(0XAE,OLED_CMD); //DISPLAY OFF } /************************************************************************** Function: Screen clear function, clear the screen, the entire screen is black, and did not light up the same Input : none Output : none 函数功能:清屏函数,清完屏,整个屏幕是黑色的,和没点亮一样 入口参数:无 返回 值:无 **************************************************************************/ void OLED_Clear(void) { u8 i,n; for(i=0;i<8;i++)for(n=0;n<128;n++)OLED_GRAM[n][i]=0X00; OLED_Refresh_Gram(); //Update the display //更新显示 } /************************************************************************** Function: Draw point Input : x,y: starting coordinate;T :1, fill,0, empty Output : none 函数功能:画点 入口参数:x,y :起点坐标; t:1,填充,0,清空 返回 值:无 **************************************************************************/ void OLED_DrawPoint(u8 x,u8 y,u8 t) { u8 pos,bx,temp=0; if(x>127||y>63)return;//超出范围了. pos=7-y/8; bx=y%8; temp=1<<(7-bx); if(t)OLED_GRAM[x][pos]|=temp; else OLED_GRAM[x][pos]&=~temp; } /************************************************************************** Function: Displays a character, including partial characters, at the specified position Input : x,y: starting coordinate;Len: The number of digits;Size: font size;Mode :0, anti-white display,1, normal display Output : none 函数功能:在指定位置显示一个字符,包括部分字符 入口参数:x,y :起点坐标; len :数字的位数; size:字体大小; mode:0,反白显示,1,正常显示 返回 值:无 **************************************************************************/ void OLED_ShowChar(u8 x,u8 y,u8 chr,u8 size,u8 mode) { u8 temp,t,t1; u8 y0=y; chr=chr-' '; //Get the offset value //得到偏移后的值 for(t=0;tMAX_CHAR_POSX){x=0;y+=16;} if(y>MAX_CHAR_POSY){y=x=0;OLED_Clear();} OLED_ShowChar(x,y,*p,12,1); x+=8; p++; } } /************************************************************************** Function: Initialize the OLED Input : none Output : none 函数功能:初始化OLED 入口参数: 无 返回 值:无 **************************************************************************/ void OLED_Init(void) { GPIO_InitTypeDef GPIO_InitStructure; //Enable pB port clock //使能PB端口时钟 RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD , ENABLE); //使能GPIOC //Port configuration //端口配置 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11|GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT; //输出 GPIO_InitStructure.GPIO_OType =GPIO_OType_PP; GPIO_InitStructure.GPIO_Speed =GPIO_Speed_2MHz; //2M GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;//根据设定参数初始化GPIO GPIO_Init(GPIOD, &GPIO_InitStructure); RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR , ENABLE); //PWR使能 //Allows you to modify RTC and backup registers //允许修改RTC和后备寄存器 PWR_BackupAccessCmd(ENABLE); //Turn off the external low speed external clock signal function, PC13, PC14, PC15 can be used as normal IO //关闭外部低速外部时钟信号功能 后,PC13 PC14 PC15 才可以当普通IO用 RCC_LSEConfig(RCC_LSE_OFF); //Do not modify the backup register //禁止修改后备寄存器 PWR_BackupAccessCmd(DISABLE); OLED_RST_Clr(); delay_ms(100); OLED_RST_Set(); OLED_WR_Byte(0xAE,OLED_CMD); //Close display //关闭显示 OLED_WR_Byte(0xD5,OLED_CMD); //The frequency frequency factor, the frequency of the shock //设置时钟分频因子,震荡频率 OLED_WR_Byte(80,OLED_CMD); //[3:0], the frequency dividing factor;[7:4], oscillation frequency //[3:0],分频因子;[7:4],震荡频率 OLED_WR_Byte(0xA8,OLED_CMD); //Set the number of driver paths //设置驱动路数 OLED_WR_Byte(0X3F,OLED_CMD); //Default 0x3f(1/64) //默认0X3F(1/64) OLED_WR_Byte(0xD3,OLED_CMD); //Setting display deviation //设置显示偏移 OLED_WR_Byte(0X00,OLED_CMD); //Default is 0//默认为0 OLED_WR_Byte(0x40,OLED_CMD); //Sets the number of rows to display starting line [5:0] //设置显示开始行 [5:0],行数 OLED_WR_Byte(0x8D,OLED_CMD); //Charge pump setup //电荷泵设置 OLED_WR_Byte(0x14,OLED_CMD); //Bit2, on/off //bit2,开启/关闭 OLED_WR_Byte(0x20,OLED_CMD); //Set up the memory address mode //设置内存地址模式 OLED_WR_Byte(0x02,OLED_CMD); //[1:0],00, column address mode;01, line address mode;10. Page address mode;The default 10; //[1:0],00,列地址模式;01,行地址模式;10,页地址模式;默认10; OLED_WR_Byte(0xA1,OLED_CMD); //Segment redefine setting,bit0:0,0- >;0;1, 0 - & gt;127; //段重定义设置,bit0:0,0->0;1,0->127; OLED_WR_Byte(0xC0,OLED_CMD); //Set the COM scan direction;Bit3:0, normal mode;1, Re-define schema COM[n-1]- >;COM0;N: Number of driving paths//设置COM扫描方向;bit3:0,普通模式;1,重定义模式 COM[N-1]->COM0;N:驱动路数 OLED_WR_Byte(0xDA,OLED_CMD); //Set the COM hardware pin configuration //设置COM硬件引脚配置 OLED_WR_Byte(0x12,OLED_CMD); //[5:4]configuration //[5:4]配置 OLED_WR_Byte(0x81,OLED_CMD); //Contrast Settings //对比度设置 OLED_WR_Byte(0xEF,OLED_CMD); //1~ 255; Default 0x7f (brightness Settings, the bigger the brighter) //1~255;默认0X7F (亮度设置,越大越亮) OLED_WR_Byte(0xD9,OLED_CMD); //Set the pre-charging cycle //设置预充电周期 OLED_WR_Byte(0xf1,OLED_CMD); //[3:0],PHASE 1;[7:4],PHASE 2; OLED_WR_Byte(0xDB,OLED_CMD); //Setting vcomh voltage multiplier//设置VCOMH 电压倍率 OLED_WR_Byte(0x30,OLED_CMD); //[6:4] 000,0.65*vcc;001,0.77*vcc;011,0.83*vcc; OLED_WR_Byte(0xA4,OLED_CMD); //Global display; Bit0:1, open; 0, close; (white screen/black screen)//全局显示开启;bit0:1,开启;0,关闭;(白屏/黑屏) OLED_WR_Byte(0xA6,OLED_CMD); //Settings display mode; Bit0:1, anti-phase display; 0, normal display//设置显示方式;bit0:1,反相显示;0,正常显示 OLED_WR_Byte(0xAF,OLED_CMD); //Open display //开启显示 OLED_Clear(); } /************************************************************************** Function: Display character Input : x: indicates the horizontal coordinates displayed; Y: the vertical coordinates that show the display; no: the line number in the array of the Chinese character (module) in the hzk-and "array", which is determined by the line number to determine the characters shown in the array, The value of the width of the font here must be consistent with the size of the dot matrix value of the use of the word mold. font_height: the font is high for the use of the word mold, because my screen pixels are 32hours, 128----0~ 7, and four bits per page Output : none Note: this method is used to show that the Chinese character must satisfy the size of the word that the word model generates the software to generate the same size as the dot matrix 函数功能:显示汉字 入口参数: x:表示显示的水平坐标; y: 表示显示的垂直坐标; no: 表示要显示的汉字(模组)在hzk[][]数组中的行号,通过行号来确定在数组中要显示的汉字, 这里字体的宽font_width的值必须与用字模制作软件生成字模时的点阵值大小一致; font_height:为用字模制作软件生成字模时字体的高,由于我的屏像素为32*128-----0~7共8页,每页4个位 返回 值:无 注意:用这种方法来显示汉字一定要满足用字模生成软件生成的字宽与点阵大小相同才行,否者容易乱码 **************************************************************************/ void OLED_ShowCHinese(u8 x,u8 y,u8 no,u8 font_width,u8 font_height) { u8 t, i; for(i=0;i<(font_height/8);i++) //The maximum height of font_height is 32. this screen is only 8 pages (line), four digits per page //font_height最大值为32,这张屏只有8个页(行),每页4个位 { OLED_Set_Pos(x,y+i); for(t=0;t>4)|0x10,OLED_CMD); OLED_WR_Byte((x&0x0f),OLED_CMD); }