ssd1306.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. import time
  2. import framebuf
  3. from pyb import SPI
  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. super().__init__(width, height, external_vcc)
  94. def write_cmd(self, cmd):
  95. self.temp[0] = 0x80 # Co=1, D/C#=0
  96. self.temp[1] = cmd
  97. self.i2c.writeto(self.addr, self.temp)
  98. def write_data(self, buf):
  99. self.temp[0] = self.addr << 1
  100. self.temp[1] = 0x40 # Co=0, D/C#=1
  101. self.i2c.start()
  102. self.i2c.write(self.temp)
  103. self.i2c.write(buf)
  104. self.i2c.stop()
  105. class SSD1306_SPI(SSD1306):
  106. def __init__(self, width, height, spi, dc, res, cs, external_vcc=False):
  107. self.rate = 10 * 1024 * 1024
  108. dc.init(dc.OUT, value=0)
  109. res.init(res.OUT, value=0)
  110. cs.init(cs.OUT, value=1)
  111. self.spi = spi
  112. self.dc = dc
  113. self.res = res
  114. self.cs = cs
  115. self.buffer = bytearray((height // 8) * width)
  116. self.framebuf = framebuf.FrameBuffer1(self.buffer, width, height)
  117. super().__init__(width, height, external_vcc)
  118. def write_cmd(self, cmd):
  119. self.spi.init(SPI.MASTER, baudrate=self.rate, polarity=0, phase=0)
  120. self.cs.high()
  121. self.dc.low()
  122. self.cs.low()
  123. self.spi.write(bytearray([cmd]))
  124. self.cs.high()
  125. def write_framebuf(self):
  126. self.spi.init(SPI.MASTER,baudrate=self.rate, polarity=0, phase=0)
  127. self.cs.high()
  128. self.dc.high()
  129. self.cs.low()
  130. self.spi.write(self.buffer)
  131. self.cs.high()
  132. def poweron(self):
  133. self.res.high()
  134. time.sleep(1)
  135. self.res.low()
  136. time.sleep(10)
  137. self.res.high()