ssd1306.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. # MicroPython SSD1306 OLED driver, I2C and SPI interfaces
  2. from micropython import const
  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. # Subclassing FrameBuffer provides support for graphics primitives
  23. # http://docs.micropython.org/en/latest/pyboard/library/framebuf.html
  24. class SSD1306(framebuf.FrameBuffer):
  25. def __init__(self, width, height, external_vcc):
  26. self.width = width
  27. self.height = height
  28. self.external_vcc = external_vcc
  29. self.pages = self.height // 8
  30. self.buffer = bytearray(self.pages * self.width)
  31. super().__init__(self.buffer, self.width, self.height, framebuf.MONO_VLSB)
  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 poweron(self):
  62. self.write_cmd(SET_DISP | 0x01)
  63. def contrast(self, contrast):
  64. self.write_cmd(SET_CONTRAST)
  65. self.write_cmd(contrast)
  66. def invert(self, invert):
  67. self.write_cmd(SET_NORM_INV | (invert & 1))
  68. def show(self):
  69. x0 = 0
  70. x1 = self.width - 1
  71. if self.width == 64:
  72. # displays with width of 64 pixels are shifted by 32
  73. x0 += 32
  74. x1 += 32
  75. self.write_cmd(SET_COL_ADDR)
  76. self.write_cmd(x0)
  77. self.write_cmd(x1)
  78. self.write_cmd(SET_PAGE_ADDR)
  79. self.write_cmd(0)
  80. self.write_cmd(self.pages - 1)
  81. self.write_data(self.buffer)
  82. class SSD1306_I2C(SSD1306):
  83. def __init__(self, width, height, i2c, addr=0x3c, external_vcc=False):
  84. self.i2c = i2c
  85. self.addr = addr
  86. self.temp = bytearray(2)
  87. super().__init__(width, height, external_vcc)
  88. def write_cmd(self, cmd):
  89. self.temp[0] = 0x80 # Co=1, D/C#=0
  90. self.temp[1] = cmd
  91. self.i2c.writeto(self.addr, self.temp)
  92. def write_data(self, buf):
  93. self.temp[0] = self.addr << 1
  94. self.temp[1] = 0x40 # Co=0, D/C#=1
  95. self.i2c.start()
  96. self.i2c.write(self.temp)
  97. self.i2c.write(buf)
  98. self.i2c.stop()
  99. class SSD1306_SPI(SSD1306):
  100. def __init__(self, width, height, spi, dc, res, cs, external_vcc=False):
  101. self.rate = 10 * 1024 * 1024
  102. dc.init(dc.OUT, value=0)
  103. res.init(res.OUT, value=0)
  104. cs.init(cs.OUT, value=1)
  105. self.spi = spi
  106. self.dc = dc
  107. self.res = res
  108. self.cs = cs
  109. import time
  110. self.res(1)
  111. time.sleep_ms(1)
  112. self.res(0)
  113. time.sleep_ms(10)
  114. self.res(1)
  115. super().__init__(width, height, external_vcc)
  116. def write_cmd(self, cmd):
  117. self.spi.init(baudrate=self.rate, polarity=0, phase=0)
  118. self.cs(1)
  119. self.dc(0)
  120. self.cs(0)
  121. self.spi.write(bytearray([cmd]))
  122. self.cs(1)
  123. def write_data(self, buf):
  124. self.spi.init(baudrate=self.rate, polarity=0, phase=0)
  125. self.cs(1)
  126. self.dc(1)
  127. self.cs(0)
  128. self.spi.write(buf)
  129. self.cs(1)