mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
14 lines
386 B
Python
14 lines
386 B
Python
#!/usr/bin/env python
|
|
|
|
from luma.core.interface.serial import i2c
|
|
from luma.core.render import canvas
|
|
from luma.oled.device import ssd1306
|
|
|
|
serial = i2c(port=1, address=0x3C)
|
|
device = ssd1306(serial)
|
|
device.cleanup = lambda _: None
|
|
|
|
with canvas(device) as draw:
|
|
draw.rectangle(device.bounding_box, outline="white", fill="black")
|
|
draw.text((30, 40), "Hello World", fill="white")
|