Editing OLED LCD Display

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 214: Line 214:
 
= A small Program in MicroPython =
 
= A small Program in MicroPython =
 
<syntaxhighlight lang="python" line='line'>
 
<syntaxhighlight lang="python" line='line'>
from machine import Pin, I2C
+
# todo
from ssd1306 import SSD1306_I2C
+
# code goes here
 
 
i2c = I2C(scl=Pin(15), sda=Pin(4))
 
pin16 = Pin(16, Pin.OUT)
 
pin16.on()
 
 
 
oled_width = 128
 
oled_height = 64
 
oled = SSD1306_I2C(oled_width,oled_height,i2c)
 
 
 
# line = line number (0-5)
 
# pos = horizontal position (0-15)
 
def text_line(text, line, pos=0):
 
  x = 10*pos
 
  y = line*11
 
  oled.text(text,x,y)
 
  oled.show()
 
 
 
# set text
 
oled.text("Hello",0,0)
 
# horizontal line from x=10, y=50, length=70, color bright
 
oled.hline(10,50,70,1)
 
# display it
 
oled.show()
 
sleep(3)
 
 
 
# delete all/ set all to dark
 
oled.fill(0)
 
# don't forget to show/display changes
 
oled.show()
 
sleep(1)
 
 
 
# set new text
 
oled.text("Hi",0,0)
 
# filled rectangle at x=50, y=20, width=20, height=20, color bright
 
oled.fill_rect(50,20,20,20,1)
 
# inverts colors of display
 
oled.invert(True)
 
oled.show()
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Please note that all contributions to Sketching with Hardware at LMU Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see My wiki:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)