当前位置:   article > 正文

stm32学习笔记:OLED显示屏_stm32 oled

stm32 oled

一、OLED简介

    OLED:有机发光二极管,供电∶3~5.5V,通信协议︰I2C/SPI,分辨率∶128+64

二、常用的调试方式

 串口调试∶通过串口通信,将调试信息发送到电脑端,电脑使用串口助手显示调试信息 

 显示屏调试∶直接将显示屏连接到单片机,将调试信息打印在显示屏上 

 Keil调试模式∶借助Keil软件的调试模式,可使用单步运行、设置断点、查看寄存器及变量等功能 

 

 三、OLED硬件电路

4引脚OLED

SCL和SDA是I2C通信引脚,需要接在I2C通信的引脚上

实验中用的模块是GPIO口模拟的I2C通信,故SCL和SDA两个端口可以接在任意的GPIO口上

7引脚OLED

右边5个引脚是SPI通信协议的引脚

如果是GPIO口模拟的通信协议,也是接在任意的GPIO口上即可。

 GND和VCC需要接电源的负极和正极。

另外这个供电孔也会同时接到stm32的PB6和PB7两个引脚 

四、OLED驱动函函数简介和应用

 

五、用keil进行调试 

(1)先编译

(2)点击放大镜,进入调试模式

六、OLED显示屏的代码

1.主函数

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

 

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

闽ICP备14008679号