matekasse_NFC-Reader/oled.py

14 lines
470 B
Python
Raw Normal View History

2024-04-10 18:50:30 +00:00
from luma.core.interface.serial import i2c, spi, pcf8574
from luma.core.interface.parallel import bitbang_6800
from luma.core.render import canvas
from luma.oled.device import ssd1306, ssd1309, ssd1325, ssd1331, sh1106, sh1107, ws0010
serial = i2c(port=1, address=0x3C)
device = ssd1306(serial)
with canvas(device) as draw:
2024-04-10 19:35:53 +00:00
#draw.rectangle(device.bounding_box, outline="white", fill="black")
print("test")
2024-04-10 18:50:30 +00:00
draw.text((30, 40), "Hello World", fill="white")