1. # MicroPython SSD1306 OLED driver, I2C and SPI interfaces
    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()