当前位置:   article > 正文

STM32标准库——(4)OLED显示屏_单片机oled显示屏

单片机oled显示屏

目录

1.STM32调试方式

2.OLED简介

3.模块简介

3.1 I2C模块

3.2 SPI模块

4.原理图

4.1 I2C模块

4.2 SPI模块

5.硬件电路图

6.OLED驱动函数

7.OLED显示屏接线图

8.OLED库函数

oled.h

oled.c

oled_font.h

9.OLED调试


1.STM32调试方式

  • 串口调试:通过串口通信,将调试信息发送到电脑端,电脑使用串口助手显示调试信息
  • 显示屏调试:直接将显示屏连接到单片机,将调试信息打印在显示屏上
  • Keil调试模式:借助Keil软件的调试模式,可使用单步运行、设置断点、查看寄存器及变量等功能

2.OLED简介

OLED,即有机发光二极管( Organic Light Emitting Diode )。 OLED 由于同时具备自发光,不需背光源、对比度高、厚度薄、视角广、反应速度快、可用于挠曲性面板、使用温度范围广、构造及制程较简单等优异之特性,被认为是下一代的平面显示器新兴应用技术。

LCD 都需要背光,而 OLED 不需要,因为它是自发光的。这样同样的显示 OLED 效果要来得好一些。以目前的技术,OLED 的尺寸还难以大型化,但是分辨率确可以做到很高。在此我们使用的是0.96寸OLED显示屏,该屏有以下特点:

  1. 0.96 寸 OLED 有黄蓝,白,蓝三种颜色可选;其中黄蓝是屏上 1/4 部分为黄光,下 3/4 为蓝;而且是固定区域显示固定颜色,颜色和显示区域均不能修改;白光则为纯白,也就是黑底白字;蓝色则为纯蓝,也就是黑底蓝字。
  2. 分辨率为 128*64
  3. 多种接口方式;OLED 裸屏总共种接口包括:6800、8080 两种并行接口方式、3 线或 4 线的串行 SPI 接口方式、 IIC 接口方式(只需要 2 根线就可以控制 OLED 了!),这五种接口是通过屏上的 BS0~BS2 来配置的。
  4. 本屏开发了两种接口的 Demo 板,接口分别为七针的 SPI/IIC 兼容模块,四针的IIC 模块。两种模块都很方便使用;希望大家根据实际需求来选择不同的模块。

3.模块简介

3.1 I2C模块

  1. GND 电源地
  2. VCC 电源正(3~5.5V)
  3. SCL OLED 的 D0 脚,在 IIC 通信中为时钟管脚
  4. SDA OLED 的 D1 脚,在 IIC 通信中为数据管脚

注:SCL和SDA是I2C的通信引脚 需要接在单片机I2C通信的引脚上 但本次学习中驱动函数模块用的是GPIO口模拟的I2C通信 所以这两个端口可以接在任意的GPIO口上

3.2 SPI模块

  1. GND 电源地
  2. VCC 电源正(3~5.5V)
  3. D0 OLED 的 D0 脚,在 SPI 和 IIC 通信中为时钟管脚
  4. D1 OLED 的 D1 脚,在 SPI 和 IIC 通信中为数据管脚
  5. RES OLED 的 RES#脚,用来复位(低电平复位)
  6. DC OLED 的 D/C#E 脚,数据和命令控制管脚
  7. CS OLED 的 CS#脚,也就是片选管脚

注:除了VCC和GND接电源 剩下的引脚是SPI通信协议的引脚 如果是GPIO口模拟的通信协议 也是可以接在任意的GPIO口上

4.原理图

4.1 I2C模块

4.2 SPI模块

5.硬件电路图

6.OLED驱动函数

7.OLED显示屏接线图

8.OLED库函数

oled.h

  1. #ifndef __OLED_H
  2. #define __OLED_H
  3. void OLED_Init(void);
  4. void OLED_Clear(void);
  5. void OLED_ShowChar(uint8_t Line, uint8_t Column, char Char);
  6. void OLED_ShowString(uint8_t Line, uint8_t Column, char *String);
  7. void OLED_ShowNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
  8. void OLED_ShowSignedNum(uint8_t Line, uint8_t Column, int32_t Number, uint8_t Length);
  9. void OLED_ShowHexNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
  10. void OLED_ShowBinNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
  11. #endif

oled.c

  1. #include "stm32f10x.h"
  2. #include "oled_font.h"
  3. #include "oled.h"
  4. /*引脚配置*/
  5. #define OLED_W_SCL(x) GPIO_WriteBit(GPIOB, GPIO_Pin_8, (BitAction)(x))
  6. #define OLED_W_SDA(x) GPIO_WriteBit(GPIOB, GPIO_Pin_9, (BitAction)(x))
  7. /*引脚初始化*/
  8. void OLED_I2C_Init(void)
  9. {
  10. GPIO_InitTypeDef GPIO_InitStructure;
  11. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
  12. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;
  13. GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  14. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
  15. GPIO_Init(GPIOB, &GPIO_InitStructure);
  16. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  17. GPIO_Init(GPIOB, &GPIO_InitStructure);
  18. OLED_W_SCL(1);
  19. OLED_W_SDA(1);
  20. }
  21. /**
  22. * @brief I2C开始
  23. * @param 无
  24. * @retval 无
  25. */
  26. void OLED_I2C_Start(void)
  27. {
  28. OLED_W_SDA(1);
  29. OLED_W_SCL(1);
  30. OLED_W_SDA(0);
  31. OLED_W_SCL(0);
  32. }
  33. /**
  34. * @brief I2C停止
  35. * @param 无
  36. * @retval 无
  37. */
  38. void OLED_I2C_Stop(void)
  39. {
  40. OLED_W_SDA(0);
  41. OLED_W_SCL(1);
  42. OLED_W_SDA(1);
  43. }
  44. /**
  45. * @brief I2C发送一个字节
  46. * @param Byte 要发送的一个字节
  47. * @retval 无
  48. */
  49. void OLED_I2C_SendByte(uint8_t Byte)
  50. {
  51. uint8_t i;
  52. for (i = 0; i < 8; i++)
  53. {
  54. OLED_W_SDA(Byte & (0x80 >> i));
  55. OLED_W_SCL(1);
  56. OLED_W_SCL(0);
  57. }
  58. OLED_W_SCL(1); //额外的一个时钟,不处理应答信号
  59. OLED_W_SCL(0);
  60. }
  61. /**
  62. * @brief OLED写命令
  63. * @param Command 要写入的命令
  64. * @retval 无
  65. */
  66. void OLED_WriteCommand(uint8_t Command)
  67. {
  68. OLED_I2C_Start();
  69. OLED_I2C_SendByte(0x78); //从机地址
  70. OLED_I2C_SendByte(0x00); //写命令
  71. OLED_I2C_SendByte(Command);
  72. OLED_I2C_Stop();
  73. }
  74. /**
  75. * @brief OLED写数据
  76. * @param Data 要写入的数据
  77. * @retval 无
  78. */
  79. void OLED_WriteData(uint8_t Data)
  80. {
  81. OLED_I2C_Start();
  82. OLED_I2C_SendByte(0x78); //从机地址
  83. OLED_I2C_SendByte(0x40); //写数据
  84. OLED_I2C_SendByte(Data);
  85. OLED_I2C_Stop();
  86. }
  87. /**
  88. * @brief OLED设置光标位置
  89. * @param Y 以左上角为原点,向下方向的坐标,范围:0~7
  90. * @param X 以左上角为原点,向右方向的坐标,范围:0~127
  91. * @retval 无
  92. */
  93. void OLED_SetCursor(uint8_t Y, uint8_t X)
  94. {
  95. OLED_WriteCommand(0xB0 | Y); //设置Y位置
  96. OLED_WriteCommand(0x10 | ((X & 0xF0) >> 4)); //设置X位置高4位
  97. OLED_WriteCommand(0x00 | (X & 0x0F)); //设置X位置低4位
  98. }
  99. /**
  100. * @brief OLED清屏
  101. * @param 无
  102. * @retval 无
  103. */
  104. void OLED_Clear(void)
  105. {
  106. uint8_t i, j;
  107. for (j = 0; j < 8; j++)
  108. {
  109. OLED_SetCursor(j, 0);
  110. for(i = 0; i < 128; i++)
  111. {
  112. OLED_WriteData(0x00);
  113. }
  114. }
  115. }
  116. /**
  117. * @brief OLED显示一个字符
  118. * @param Line 行位置,范围:1~4
  119. * @param Column 列位置,范围:1~16
  120. * @param Char 要显示的一个字符,范围:ASCII可见字符
  121. * @retval 无
  122. */
  123. void OLED_ShowChar(uint8_t Line, uint8_t Column, char Char)
  124. {
  125. uint8_t i;
  126. OLED_SetCursor((Line - 1) * 2, (Column - 1) * 8); //设置光标位置在上半部分
  127. for (i = 0; i < 8; i++)
  128. {
  129. OLED_WriteData(OLED_F8x16[Char - ' '][i]); //显示上半部分内容
  130. }
  131. OLED_SetCursor((Line - 1) * 2 + 1, (Column - 1) * 8); //设置光标位置在下半部分
  132. for (i = 0; i < 8; i++)
  133. {
  134. OLED_WriteData(OLED_F8x16[Char - ' '][i + 8]); //显示下半部分内容
  135. }
  136. }
  137. /**
  138. * @brief OLED显示字符串
  139. * @param Line 起始行位置,范围:1~4
  140. * @param Column 起始列位置,范围:1~16
  141. * @param String 要显示的字符串,范围:ASCII可见字符
  142. * @retval 无
  143. */
  144. void OLED_ShowString(uint8_t Line, uint8_t Column, char *String)
  145. {
  146. uint8_t i;
  147. for (i = 0; String[i] != '\0'; i++)
  148. {
  149. OLED_ShowChar(Line, Column + i, String[i]);
  150. }
  151. }
  152. /**
  153. * @brief OLED次方函数
  154. * @retval 返回值等于X的Y次方
  155. */
  156. uint32_t OLED_Pow(uint32_t X, uint32_t Y)
  157. {
  158. uint32_t Result = 1;
  159. while (Y--)
  160. {
  161. Result *= X;
  162. }
  163. return Result;
  164. }
  165. /**
  166. * @brief OLED显示数字(十进制,正数)
  167. * @param Line 起始行位置,范围:1~4
  168. * @param Column 起始列位置,范围:1~16
  169. * @param Number 要显示的数字,范围:0~4294967295
  170. * @param Length 要显示数字的长度,范围:1~10
  171. * @retval 无
  172. */
  173. void OLED_ShowNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length)
  174. {
  175. uint8_t i;
  176. for (i = 0; i < Length; i++)
  177. {
  178. OLED_ShowChar(Line, Column + i, Number / OLED_Pow(10, Length - i - 1) % 10 + '0');
  179. }
  180. }
  181. /**
  182. * @brief OLED显示数字(十进制,带符号数)
  183. * @param Line 起始行位置,范围:1~4
  184. * @param Column 起始列位置,范围:1~16
  185. * @param Number 要显示的数字,范围:-2147483648~2147483647
  186. * @param Length 要显示数字的长度,范围:1~10
  187. * @retval 无
  188. */
  189. void OLED_ShowSignedNum(uint8_t Line, uint8_t Column, int32_t Number, uint8_t Length)
  190. {
  191. uint8_t i;
  192. uint32_t Number1;
  193. if (Number >= 0)
  194. {
  195. OLED_ShowChar(Line, Column, '+');
  196. Number1 = Number;
  197. }
  198. else
  199. {
  200. OLED_ShowChar(Line, Column, '-');
  201. Number1 = -Number;
  202. }
  203. for (i = 0; i < Length; i++)
  204. {
  205. OLED_ShowChar(Line, Column + i + 1, Number1 / OLED_Pow(10, Length - i - 1) % 10 + '0');
  206. }
  207. }
  208. /**
  209. * @brief OLED显示数字(十六进制,正数)
  210. * @param Line 起始行位置,范围:1~4
  211. * @param Column 起始列位置,范围:1~16
  212. * @param Number 要显示的数字,范围:0~0xFFFFFFFF
  213. * @param Length 要显示数字的长度,范围:1~8
  214. * @retval 无
  215. */
  216. void OLED_ShowHexNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length)
  217. {
  218. uint8_t i, SingleNumber;
  219. for (i = 0; i < Length; i++)
  220. {
  221. SingleNumber = Number / OLED_Pow(16, Length - i - 1) % 16;
  222. if (SingleNumber < 10)
  223. {
  224. OLED_ShowChar(Line, Column + i, SingleNumber + '0');
  225. }
  226. else
  227. {
  228. OLED_ShowChar(Line, Column + i, SingleNumber - 10 + 'A');
  229. }
  230. }
  231. }
  232. /**
  233. * @brief OLED显示数字(二进制,正数)
  234. * @param Line 起始行位置,范围:1~4
  235. * @param Column 起始列位置,范围:1~16
  236. * @param Number 要显示的数字,范围:0~1111 1111 1111 1111
  237. * @param Length 要显示数字的长度,范围:1~16
  238. * @retval 无
  239. */
  240. void OLED_ShowBinNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length)
  241. {
  242. uint8_t i;
  243. for (i = 0; i < Length; i++)
  244. {
  245. OLED_ShowChar(Line, Column + i, Number / OLED_Pow(2, Length - i - 1) % 2 + '0');
  246. }
  247. }
  248. /**
  249. * @brief OLED初始化
  250. * @param 无
  251. * @retval 无
  252. */
  253. void OLED_Init(void)
  254. {
  255. uint32_t i, j;
  256. for (i = 0; i < 1000; i++) //上电延时
  257. {
  258. for (j = 0; j < 1000; j++);
  259. }
  260. OLED_I2C_Init(); //端口初始化
  261. OLED_WriteCommand(0xAE); //关闭显示
  262. OLED_WriteCommand(0xD5); //设置显示时钟分频比/振荡器频率
  263. OLED_WriteCommand(0x80);
  264. OLED_WriteCommand(0xA8); //设置多路复用率
  265. OLED_WriteCommand(0x3F);
  266. OLED_WriteCommand(0xD3); //设置显示偏移
  267. OLED_WriteCommand(0x00);
  268. OLED_WriteCommand(0x40); //设置显示开始行
  269. OLED_WriteCommand(0xA1); //设置左右方向,0xA1正常 0xA0左右反置
  270. OLED_WriteCommand(0xC8); //设置上下方向,0xC8正常 0xC0上下反置
  271. OLED_WriteCommand(0xDA); //设置COM引脚硬件配置
  272. OLED_WriteCommand(0x12);
  273. OLED_WriteCommand(0x81); //设置对比度控制
  274. OLED_WriteCommand(0xCF);
  275. OLED_WriteCommand(0xD9); //设置预充电周期
  276. OLED_WriteCommand(0xF1);
  277. OLED_WriteCommand(0xDB); //设置VCOMH取消选择级别
  278. OLED_WriteCommand(0x30);
  279. OLED_WriteCommand(0xA4); //设置整个显示打开/关闭
  280. OLED_WriteCommand(0xA6); //设置正常/倒转显示
  281. OLED_WriteCommand(0x8D); //设置充电泵
  282. OLED_WriteCommand(0x14);
  283. OLED_WriteCommand(0xAF); //开启显示
  284. OLED_Clear(); //OLED清屏
  285. }

oled_font.h

  1. #ifndef __OLED_FONT_H
  2. #define __OLED_FONT_H
  3. /*OLED字模库,宽8像素,高16像素*/
  4. const uint8_t OLED_F8x16[][16]=
  5. {
  6. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  7. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,// 0
  8. 0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0x00,
  9. 0x00,0x00,0x00,0x33,0x30,0x00,0x00,0x00,//! 1
  10. 0x00,0x10,0x0C,0x06,0x10,0x0C,0x06,0x00,
  11. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//" 2
  12. 0x40,0xC0,0x78,0x40,0xC0,0x78,0x40,0x00,
  13. 0x04,0x3F,0x04,0x04,0x3F,0x04,0x04,0x00,//# 3
  14. 0x00,0x70,0x88,0xFC,0x08,0x30,0x00,0x00,
  15. 0x00,0x18,0x20,0xFF,0x21,0x1E,0x00,0x00,//$ 4
  16. 0xF0,0x08,0xF0,0x00,0xE0,0x18,0x00,0x00,
  17. 0x00,0x21,0x1C,0x03,0x1E,0x21,0x1E,0x00,//% 5
  18. 0x00,0xF0,0x08,0x88,0x70,0x00,0x00,0x00,
  19. 0x1E,0x21,0x23,0x24,0x19,0x27,0x21,0x10,//& 6
  20. 0x10,0x16,0x0E,0x00,0x00,0x00,0x00,0x00,
  21. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//' 7
  22. 0x00,0x00,0x00,0xE0,0x18,0x04,0x02,0x00,
  23. 0x00,0x00,0x00,0x07,0x18,0x20,0x40,0x00,//( 8
  24. 0x00,0x02,0x04,0x18,0xE0,0x00,0x00,0x00,
  25. 0x00,0x40,0x20,0x18,0x07,0x00,0x00,0x00,//) 9
  26. 0x40,0x40,0x80,0xF0,0x80,0x40,0x40,0x00,
  27. 0x02,0x02,0x01,0x0F,0x01,0x02,0x02,0x00,//* 10
  28. 0x00,0x00,0x00,0xF0,0x00,0x00,0x00,0x00,
  29. 0x01,0x01,0x01,0x1F,0x01,0x01,0x01,0x00,//+ 11
  30. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  31. 0x80,0xB0,0x70,0x00,0x00,0x00,0x00,0x00,//, 12
  32. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  33. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,//- 13
  34. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  35. 0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,//. 14
  36. 0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x04,
  37. 0x00,0x60,0x18,0x06,0x01,0x00,0x00,0x00,/// 15
  38. 0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,
  39. 0x00,0x0F,0x10,0x20,0x20,0x10,0x0F,0x00,//0 16
  40. 0x00,0x10,0x10,0xF8,0x00,0x00,0x00,0x00,
  41. 0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//1 17
  42. 0x00,0x70,0x08,0x08,0x08,0x88,0x70,0x00,
  43. 0x00,0x30,0x28,0x24,0x22,0x21,0x30,0x00,//2 18
  44. 0x00,0x30,0x08,0x88,0x88,0x48,0x30,0x00,
  45. 0x00,0x18,0x20,0x20,0x20,0x11,0x0E,0x00,//3 19
  46. 0x00,0x00,0xC0,0x20,0x10,0xF8,0x00,0x00,
  47. 0x00,0x07,0x04,0x24,0x24,0x3F,0x24,0x00,//4 20
  48. 0x00,0xF8,0x08,0x88,0x88,0x08,0x08,0x00,
  49. 0x00,0x19,0x21,0x20,0x20,0x11,0x0E,0x00,//5 21
  50. 0x00,0xE0,0x10,0x88,0x88,0x18,0x00,0x00,
  51. 0x00,0x0F,0x11,0x20,0x20,0x11,0x0E,0x00,//6 22
  52. 0x00,0x38,0x08,0x08,0xC8,0x38,0x08,0x00,
  53. 0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x00,//7 23
  54. 0x00,0x70,0x88,0x08,0x08,0x88,0x70,0x00,
  55. 0x00,0x1C,0x22,0x21,0x21,0x22,0x1C,0x00,//8 24
  56. 0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,
  57. 0x00,0x00,0x31,0x22,0x22,0x11,0x0F,0x00,//9 25
  58. 0x00,0x00,0x00,0xC0,0xC0,0x00,0x00,0x00,
  59. 0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,//: 26
  60. 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,
  61. 0x00,0x00,0x80,0x60,0x00,0x00,0x00,0x00,//; 27
  62. 0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x00,
  63. 0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x00,//< 28
  64. 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,
  65. 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,//= 29
  66. 0x00,0x08,0x10,0x20,0x40,0x80,0x00,0x00,
  67. 0x00,0x20,0x10,0x08,0x04,0x02,0x01,0x00,//> 30
  68. 0x00,0x70,0x48,0x08,0x08,0x08,0xF0,0x00,
  69. 0x00,0x00,0x00,0x30,0x36,0x01,0x00,0x00,//? 31
  70. 0xC0,0x30,0xC8,0x28,0xE8,0x10,0xE0,0x00,
  71. 0x07,0x18,0x27,0x24,0x23,0x14,0x0B,0x00,//@ 32
  72. 0x00,0x00,0xC0,0x38,0xE0,0x00,0x00,0x00,
  73. 0x20,0x3C,0x23,0x02,0x02,0x27,0x38,0x20,//A 33
  74. 0x08,0xF8,0x88,0x88,0x88,0x70,0x00,0x00,
  75. 0x20,0x3F,0x20,0x20,0x20,0x11,0x0E,0x00,//B 34
  76. 0xC0,0x30,0x08,0x08,0x08,0x08,0x38,0x00,
  77. 0x07,0x18,0x20,0x20,0x20,0x10,0x08,0x00,//C 35
  78. 0x08,0xF8,0x08,0x08,0x08,0x10,0xE0,0x00,
  79. 0x20,0x3F,0x20,0x20,0x20,0x10,0x0F,0x00,//D 36
  80. 0x08,0xF8,0x88,0x88,0xE8,0x08,0x10,0x00,
  81. 0x20,0x3F,0x20,0x20,0x23,0x20,0x18,0x00,//E 37
  82. 0x08,0xF8,0x88,0x88,0xE8,0x08,0x10,0x00,
  83. 0x20,0x3F,0x20,0x00,0x03,0x00,0x00,0x00,//F 38
  84. 0xC0,0x30,0x08,0x08,0x08,0x38,0x00,0x00,
  85. 0x07,0x18,0x20,0x20,0x22,0x1E,0x02,0x00,//G 39
  86. 0x08,0xF8,0x08,0x00,0x00,0x08,0xF8,0x08,
  87. 0x20,0x3F,0x21,0x01,0x01,0x21,0x3F,0x20,//H 40
  88. 0x00,0x08,0x08,0xF8,0x08,0x08,0x00,0x00,
  89. 0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//I 41
  90. 0x00,0x00,0x08,0x08,0xF8,0x08,0x08,0x00,
  91. 0xC0,0x80,0x80,0x80,0x7F,0x00,0x00,0x00,//J 42
  92. 0x08,0xF8,0x88,0xC0,0x28,0x18,0x08,0x00,
  93. 0x20,0x3F,0x20,0x01,0x26,0x38,0x20,0x00,//K 43
  94. 0x08,0xF8,0x08,0x00,0x00,0x00,0x00,0x00,
  95. 0x20,0x3F,0x20,0x20,0x20,0x20,0x30,0x00,//L 44
  96. 0x08,0xF8,0xF8,0x00,0xF8,0xF8,0x08,0x00,
  97. 0x20,0x3F,0x00,0x3F,0x00,0x3F,0x20,0x00,//M 45
  98. 0x08,0xF8,0x30,0xC0,0x00,0x08,0xF8,0x08,
  99. 0x20,0x3F,0x20,0x00,0x07,0x18,0x3F,0x00,//N 46
  100. 0xE0,0x10,0x08,0x08,0x08,0x10,0xE0,0x00,
  101. 0x0F,0x10,0x20,0x20,0x20,0x10,0x0F,0x00,//O 47
  102. 0x08,0xF8,0x08,0x08,0x08,0x08,0xF0,0x00,
  103. 0x20,0x3F,0x21,0x01,0x01,0x01,0x00,0x00,//P 48
  104. 0xE0,0x10,0x08,0x08,0x08,0x10,0xE0,0x00,
  105. 0x0F,0x18,0x24,0x24,0x38,0x50,0x4F,0x00,//Q 49
  106. 0x08,0xF8,0x88,0x88,0x88,0x88,0x70,0x00,
  107. 0x20,0x3F,0x20,0x00,0x03,0x0C,0x30,0x20,//R 50
  108. 0x00,0x70,0x88,0x08,0x08,0x08,0x38,0x00,
  109. 0x00,0x38,0x20,0x21,0x21,0x22,0x1C,0x00,//S 51
  110. 0x18,0x08,0x08,0xF8,0x08,0x08,0x18,0x00,
  111. 0x00,0x00,0x20,0x3F,0x20,0x00,0x00,0x00,//T 52
  112. 0x08,0xF8,0x08,0x00,0x00,0x08,0xF8,0x08,
  113. 0x00,0x1F,0x20,0x20,0x20,0x20,0x1F,0x00,//U 53
  114. 0x08,0x78,0x88,0x00,0x00,0xC8,0x38,0x08,
  115. 0x00,0x00,0x07,0x38,0x0E,0x01,0x00,0x00,//V 54
  116. 0xF8,0x08,0x00,0xF8,0x00,0x08,0xF8,0x00,
  117. 0x03,0x3C,0x07,0x00,0x07,0x3C,0x03,0x00,//W 55
  118. 0x08,0x18,0x68,0x80,0x80,0x68,0x18,0x08,
  119. 0x20,0x30,0x2C,0x03,0x03,0x2C,0x30,0x20,//X 56
  120. 0x08,0x38,0xC8,0x00,0xC8,0x38,0x08,0x00,
  121. 0x00,0x00,0x20,0x3F,0x20,0x00,0x00,0x00,//Y 57
  122. 0x10,0x08,0x08,0x08,0xC8,0x38,0x08,0x00,
  123. 0x20,0x38,0x26,0x21,0x20,0x20,0x18,0x00,//Z 58
  124. 0x00,0x00,0x00,0xFE,0x02,0x02,0x02,0x00,
  125. 0x00,0x00,0x00,0x7F,0x40,0x40,0x40,0x00,//[ 59
  126. 0x00,0x0C,0x30,0xC0,0x00,0x00,0x00,0x00,
  127. 0x00,0x00,0x00,0x01,0x06,0x38,0xC0,0x00,//\ 60
  128. 0x00,0x02,0x02,0x02,0xFE,0x00,0x00,0x00,
  129. 0x00,0x40,0x40,0x40,0x7F,0x00,0x00,0x00,//] 61
  130. 0x00,0x00,0x04,0x02,0x02,0x02,0x04,0x00,
  131. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//^ 62
  132. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  133. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,//_ 63
  134. 0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,
  135. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//` 64
  136. 0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,
  137. 0x00,0x19,0x24,0x22,0x22,0x22,0x3F,0x20,//a 65
  138. 0x08,0xF8,0x00,0x80,0x80,0x00,0x00,0x00,
  139. 0x00,0x3F,0x11,0x20,0x20,0x11,0x0E,0x00,//b 66
  140. 0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,
  141. 0x00,0x0E,0x11,0x20,0x20,0x20,0x11,0x00,//c 67
  142. 0x00,0x00,0x00,0x80,0x80,0x88,0xF8,0x00,
  143. 0x00,0x0E,0x11,0x20,0x20,0x10,0x3F,0x20,//d 68
  144. 0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,
  145. 0x00,0x1F,0x22,0x22,0x22,0x22,0x13,0x00,//e 69
  146. 0x00,0x80,0x80,0xF0,0x88,0x88,0x88,0x18,
  147. 0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//f 70
  148. 0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,
  149. 0x00,0x6B,0x94,0x94,0x94,0x93,0x60,0x00,//g 71
  150. 0x08,0xF8,0x00,0x80,0x80,0x80,0x00,0x00,
  151. 0x20,0x3F,0x21,0x00,0x00,0x20,0x3F,0x20,//h 72
  152. 0x00,0x80,0x98,0x98,0x00,0x00,0x00,0x00,
  153. 0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//i 73
  154. 0x00,0x00,0x00,0x80,0x98,0x98,0x00,0x00,
  155. 0x00,0xC0,0x80,0x80,0x80,0x7F,0x00,0x00,//j 74
  156. 0x08,0xF8,0x00,0x00,0x80,0x80,0x80,0x00,
  157. 0x20,0x3F,0x24,0x02,0x2D,0x30,0x20,0x00,//k 75
  158. 0x00,0x08,0x08,0xF8,0x00,0x00,0x00,0x00,
  159. 0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//l 76
  160. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,
  161. 0x20,0x3F,0x20,0x00,0x3F,0x20,0x00,0x3F,//m 77
  162. 0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,
  163. 0x20,0x3F,0x21,0x00,0x00,0x20,0x3F,0x20,//n 78
  164. 0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,
  165. 0x00,0x1F,0x20,0x20,0x20,0x20,0x1F,0x00,//o 79
  166. 0x80,0x80,0x00,0x80,0x80,0x00,0x00,0x00,
  167. 0x80,0xFF,0xA1,0x20,0x20,0x11,0x0E,0x00,//p 80
  168. 0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,
  169. 0x00,0x0E,0x11,0x20,0x20,0xA0,0xFF,0x80,//q 81
  170. 0x80,0x80,0x80,0x00,0x80,0x80,0x80,0x00,
  171. 0x20,0x20,0x3F,0x21,0x20,0x00,0x01,0x00,//r 82
  172. 0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,
  173. 0x00,0x33,0x24,0x24,0x24,0x24,0x19,0x00,//s 83
  174. 0x00,0x80,0x80,0xE0,0x80,0x80,0x00,0x00,
  175. 0x00,0x00,0x00,0x1F,0x20,0x20,0x00,0x00,//t 84
  176. 0x80,0x80,0x00,0x00,0x00,0x80,0x80,0x00,
  177. 0x00,0x1F,0x20,0x20,0x20,0x10,0x3F,0x20,//u 85
  178. 0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,
  179. 0x00,0x01,0x0E,0x30,0x08,0x06,0x01,0x00,//v 86
  180. 0x80,0x80,0x00,0x80,0x00,0x80,0x80,0x80,
  181. 0x0F,0x30,0x0C,0x03,0x0C,0x30,0x0F,0x00,//w 87
  182. 0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x00,
  183. 0x00,0x20,0x31,0x2E,0x0E,0x31,0x20,0x00,//x 88
  184. 0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,
  185. 0x80,0x81,0x8E,0x70,0x18,0x06,0x01,0x00,//y 89
  186. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x00,
  187. 0x00,0x21,0x30,0x2C,0x22,0x21,0x30,0x00,//z 90
  188. 0x00,0x00,0x00,0x00,0x80,0x7C,0x02,0x02,
  189. 0x00,0x00,0x00,0x00,0x00,0x3F,0x40,0x40,//{ 91
  190. 0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,
  191. 0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,//| 92
  192. 0x00,0x02,0x02,0x7C,0x80,0x00,0x00,0x00,
  193. 0x00,0x40,0x40,0x3F,0x00,0x00,0x00,0x00,//} 93
  194. 0x00,0x06,0x01,0x01,0x02,0x02,0x04,0x04,
  195. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//~ 94
  196. };
  197. #endif

9.OLED调试

main.c

  1. #include "stm32f10x.h"
  2. #include "delay.h"
  3. #include "oled.h"
  4. int main(void)
  5. {
  6. //初始化
  7. OLED_Init();
  8. //显示一个字符
  9. OLED_ShowChar(1, 1, 'A');
  10. //显示字符串
  11. OLED_ShowString(1, 3, "Hello World");
  12. //显示十进制数字
  13. OLED_ShowNum(2, 1, 66666, 5);
  14. //显示有符号十进制数
  15. OLED_ShowSignedNum(2, 7, -66666, 5);
  16. //显示十六进制
  17. OLED_ShowHexNum(3, 1, 0xAA55, 4);
  18. //显示二进制数字
  19. OLED_ShowBinNum(4, 1, 0xAA55, 16);
  20. while(1)
  21. {
  22. }
  23. return 0;
  24. }

现象如下:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/598774
推荐阅读
相关标签
  

闽ICP备14008679号