• 物联网开发笔记(48)- 使用Micropython开发ESP32开发板之控制OLED ssd1306屏幕


    一、目的

            这一节我们学习如何使用我们的ESP32开发板来控制OLED ssd1306屏幕,此处使用的是I2C协议,大家可自行百度学习一下I2C。

    二、环境

            ESP32 + OLED ssd1306屏幕 + Thonny IDE(或者WOKWI在线仿真) + 几根杜邦线

    本次使用在线仿真,笔者太了,写了那么多,也没人打赏,买不起设备了!!!

     接线方法:

     WOKWI在线仿真地址,国外网站,速度较慢:

    Wokwi - Online Arduino and ESP32 Simulator

    关于这个屏幕的具体介绍参考如下地址:

    board-ssd1306 Reference | Wokwi Docs

    三、代码

    屏幕驱动芯片:

    1. #MicroPython SSD1306 OLED driver, I2C and SPI interfaces created by Adafruit
    2. import time
    3. import framebuf
    4. # register definitions
    5. SET_CONTRAST = const(0x81)
    6. SET_ENTIRE_ON = const(0xa4)
    7. SET_NORM_INV = const(0xa6)
    8. SET_DISP = const(0xae)
    9. SET_MEM_ADDR = const(0x20)
    10. SET_COL_ADDR = const(0x21)
    11. SET_PAGE_ADDR = const(0x22)
    12. SET_DISP_START_LINE = const(0x40)
    13. SET_SEG_REMAP = const(0xa0)
    14. SET_MUX_RATIO = const(0xa8)
    15. SET_COM_OUT_DIR = const(0xc0)
    16. SET_DISP_OFFSET = const(0xd3)
    17. SET_COM_PIN_CFG = const(0xda)
    18. SET_DISP_CLK_DIV = const(0xd5)
    19. SET_PRECHARGE = const(0xd9)
    20. SET_VCOM_DESEL = const(0xdb)
    21. SET_CHARGE_PUMP = const(0x8d)
    22. class SSD1306:
    23. def __init__(self, width, height, external_vcc):
    24. self.width = width
    25. self.height = height
    26. self.external_vcc = external_vcc
    27. self.pages = self.height // 8
    28. # Note the subclass must initialize self.framebuf to a framebuffer.
    29. # This is necessary because the underlying data buffer is different
    30. # between I2C and SPI implementations (I2C needs an extra byte).
    31. self.poweron()
    32. self.init_display()
    33. def init_display(self):
    34. for cmd in (
    35. SET_DISP | 0x00, # off
    36. # address setting
    37. SET_MEM_ADDR, 0x00, # horizontal
    38. # resolution and layout
    39. SET_DISP_START_LINE | 0x00,
    40. SET_SEG_REMAP | 0x01, # column addr 127 mapped to SEG0
    41. SET_MUX_RATIO, self.height - 1,
    42. SET_COM_OUT_DIR | 0x08, # scan from COM[N] to COM0
    43. SET_DISP_OFFSET, 0x00,
    44. SET_COM_PIN_CFG, 0x02 if self.height == 32 else 0x12,
    45. # timing and driving scheme
    46. SET_DISP_CLK_DIV, 0x80,
    47. SET_PRECHARGE, 0x22 if self.external_vcc else 0xf1,
    48. SET_VCOM_DESEL, 0x30, # 0.83*Vcc
    49. # display
    50. SET_CONTRAST, 0xff, # maximum
    51. SET_ENTIRE_ON, # output follows RAM contents
    52. SET_NORM_INV, # not inverted
    53. # charge pump
    54. SET_CHARGE_PUMP, 0x10 if self.external_vcc else 0x14,
    55. SET_DISP | 0x01): # on
    56. self.write_cmd(cmd)
    57. self.fill(0)
    58. self.show()
    59. def poweroff(self):
    60. self.write_cmd(SET_DISP | 0x00)
    61. def contrast(self, contrast):
    62. self.write_cmd(SET_CONTRAST)
    63. self.write_cmd(contrast)
    64. def invert(self, invert):
    65. self.write_cmd(SET_NORM_INV | (invert & 1))
    66. def show(self):
    67. x0 = 0
    68. x1 = self.width - 1
    69. if self.width == 64:
    70. # displays with width of 64 pixels are shifted by 32
    71. x0 += 32
    72. x1 += 32
    73. self.write_cmd(SET_COL_ADDR)
    74. self.write_cmd(x0)
    75. self.write_cmd(x1)
    76. self.write_cmd(SET_PAGE_ADDR)
    77. self.write_cmd(0)
    78. self.write_cmd(self.pages - 1)
    79. self.write_framebuf()
    80. def fill(self, col):
    81. self.framebuf.fill(col)
    82. def pixel(self, x, y, col):
    83. self.framebuf.pixel(x, y, col)
    84. def scroll(self, dx, dy):
    85. self.framebuf.scroll(dx, dy)
    86. def text(self, string, x, y, col=1):
    87. self.framebuf.text(string, x, y, col)
    88. class SSD1306_I2C(SSD1306):
    89. def __init__(self, width, height, i2c, addr=0x3c, external_vcc=False):
    90. self.i2c = i2c
    91. self.addr = addr
    92. self.temp = bytearray(2)
    93. # Add an extra byte to the data buffer to hold an I2C data/command byte
    94. # to use hardware-compatible I2C transactions. A memoryview of the
    95. # buffer is used to mask this byte from the framebuffer operations
    96. # (without a major memory hit as memoryview doesn't copy to a separate
    97. # buffer).
    98. self.buffer = bytearray(((height // 8) * width) + 1)
    99. self.buffer[0] = 0x40 # Set first byte of data buffer to Co=0, D/C=1
    100. self.framebuf = framebuf.FrameBuffer1(memoryview(self.buffer)[1:], width, height)
    101. super().__init__(width, height, external_vcc)
    102. def write_cmd(self, cmd):
    103. self.temp[0] = 0x80 # Co=1, D/C#=0
    104. self.temp[1] = cmd
    105. self.i2c.writeto(self.addr, self.temp)
    106. def write_framebuf(self):
    107. # Blast out the frame buffer using a single I2C transaction to support
    108. # hardware I2C interfaces.
    109. self.i2c.writeto(self.addr, self.buffer)
    110. def poweron(self):
    111. pass
    112. class SSD1306_SPI(SSD1306):
    113. def __init__(self, width, height, spi, dc, res, cs, external_vcc=False):
    114. self.rate = 10 * 1024 * 1024
    115. dc.init(dc.OUT, value=0)
    116. res.init(res.OUT, value=0)
    117. cs.init(cs.OUT, value=1)
    118. self.spi = spi
    119. self.dc = dc
    120. self.res = res
    121. self.cs = cs
    122. self.buffer = bytearray((height // 8) * width)
    123. self.framebuf = framebuf.FrameBuffer1(self.buffer, width, height)
    124. super().__init__(width, height, external_vcc)
    125. def write_cmd(self, cmd):
    126. self.spi.init(baudrate=self.rate, polarity=0, phase=0)
    127. self.cs.high()
    128. self.dc.low()
    129. self.cs.low()
    130. self.spi.write(bytearray([cmd]))
    131. self.cs.high()
    132. def write_framebuf(self):
    133. self.spi.init(baudrate=self.rate, polarity=0, phase=0)
    134. self.cs.high()
    135. self.dc.high()
    136. self.cs.low()
    137. self.spi.write(self.buffer)
    138. self.cs.high()
    139. def poweron(self):
    140. self.res.high()
    141. time.sleep_ms(1)
    142. self.res.low()
    143. time.sleep_ms(10)
    144. self.res.high()

    示例代码1

    1. from machine import Pin, SoftI2C # 导入Pin和软I2C模块
    2. from time import sleep # 导入时间模块
    3. import ssd1306 # 导入屏幕驱动模块
    4. # 创建i2c对象
    5. i2c = SoftI2C(scl=Pin(22), sda=Pin(21)) # 时钟接Pin22,数据接Pin21
    6. # 宽度高度,屏幕宽高为128*64 像素
    7. oled_width = 128
    8. oled_height = 64
    9. # 创建oled屏幕对象
    10. oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c) # 设置宽度,高度和I2C通信
    11. # 在指定位置处显示文字
    12. oled.text('Shanghai!', 0, 0) # 在屏幕的左上角开始显示
    13. oled.text('Beijing welcome!', 0, 15)
    14. oled.text('Guangzhou beautiful!', 0, 25)
    15. oled.show() # 显示文字

    示例代码2

    1. from machine import Pin, I2C # 导入PIN和I2C
    2. from ssd1306 import SSD1306_I2C # 导入屏幕驱动
    3. #OLED=....
    4. i2c = I2C(scl=Pin(22), sda=Pin(21)) # 创建I2C对象
    5. OLED= SSD1306_I2C(128, 64, i2c) # 创建OLED对象
    6. #fonts=....字使用字典,字典的key来放字的编码的十六进制,键来放字模
    7. fonts= {
    8. 0xE5A5BD:
    9. [0x00,0x04,0x08,0x10,0x20,0xFF,0x11,0x12,0x14,0x18,0x24,0x42,0x00,0x00,0x00,0x00,
    10. 0x00,0x00,0xF8,0x10,0x20,0xF8,0x40,0x20,0x10,0x08,0x28,0x10,0x00,0x00,0x00,0x00], # 好
    11. 0xE4BABA:
    12. [0x00,0x01,0x01,0x01,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,
    13. 0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00], # 人
    14. 0xE5A49A:
    15. [0x00,0x02,0x04,0x0F,0x18,0x25,0x02,0x0D,0x12,0x04,0x00,0x01,0x00,0x00,0x00,0x00,
    16. 0x00,0x00,0x00,0x80,0xA0,0x40,0xF8,0x08,0xD0,0x20,0x40,0x80,0x00,0x00,0x00,0x00], # 多
    17. }
    18. # 顶替中文函数部分
    19. def chinese(ch_str, x_axis, y_axis): # 需要显示的中文,x轴的开始位置,y轴的开始位置
    20. offset_ = 0 # 偏移量设为0,也可以设为其他值,俺需要修正
    21. for k in ch_str: # for循环去除每个字
    22. code = 0x00 # 将中文转成16进制编码
    23. data_code = k.encode("utf-8") # 编码为utf-8格式
    24. code |= data_code[0] << 16
    25. code |= data_code[1] << 8
    26. code |= data_code[2]
    27. byte_data = fonts[code]
    28. for y in range(0, 16):
    29. a_ = bin(byte_data[y]).replace('0b', '')
    30. while len(a_) < 8:
    31. a_ = '0'+ a_
    32. b_ = bin(byte_data[y+16]).replace('0b', '')
    33. while len(b_) < 8:
    34. b_ = '0'+ b_
    35. for x in range(0, 8):
    36. OLED.pixel(x_axis + offset_ + x, y+y_axis, int(a_[x]))
    37. OLED.pixel(x_axis + offset_ + x + 8, y+y_axis, int(b_[x]))
    38. offset_ += 16
    39. chinese('好人多', 35, 4) # 需要显示的中文
    40. OLED.show() # 显示
    41. OLED.text('welcome to china', 0, 32) # 需要显示的英文
    42. OLED.show() # 显示

    四、演示效果

    示例代码1的效果:

    示例代码2的效果:

     也可以点开如下地址,在线查看效果:

    Wokwi Arduino and ESP32 Simulatoricon-default.png?t=M85Bhttps://wokwi.com/projects/348669376140935763

    五、设计字库

            我们显示中文,需要对中文进行设计,然后再让屏幕显示出来。请看如下操作:

    1,我们通过如下网址,可以得到中文和UTF-8之间的相互转换。

    查看字符编码(UTF-8)

     2,通过如下工具,制作汉子对应的形状。

             工具大家可以在文末的链接内下载找到。如果你是英文版本系统,或者你打开这个工具后显示乱码。需要对你的系统进行设置。下面以Win10为例讲解如何设置。

            1,打开控制面板,找到 时钟和地区,按如下操作即可

     

     

     2,我们打开工具PCtoLCD2002,按如下步骤进行操作

     

     

     

     

     

     然后我们复制上图红框中的数据,粘贴到代码中对应的汉字的即可。

     

    六、购买

    某宝链接如下:
    https://item.taobao.com/item.htm?spm=a230r.1.14.32.788158fdpYtkII&id=573950296900&ns=1&abbucket=8#detail

     

    产品规格:0.96寸OLED裸屏-30P-1306技术资料

    对应技术资料下载地址:https://pan.baidu.com/s/1_P7dey5xLMGfZ70UylNm7w

    提取码:xnn1

    产品规格:0.96寸OLED带板带字库-1306技术资料

    对应技术资料下载地址:https://pan.baidu.com/s/12aTj4TzXrw3ynlDJcmKewA

    提取码:1bqm

  • 相关阅读:
    SpringBoot中自定义注解
    固体物理 2022.9.30
    【计算机网络系列】物理层②:信道复用技术(频分复用、时分复用、波分复用及码分复用)
    Linux 系统移植(一)-- 系统组成
    FiRa标准UWB MAC实现(三)——距离如何获得?
    Sass语法小册-笔记迁移
    游戏攻略综述
    Ubuntu中Python3找不到_sqlite3模块
    基础(四)之java后端根据经纬度获取地址
    达梦(DM)数据库常用SQL。
  • 原文地址:https://blog.csdn.net/zhusongziye/article/details/127892333