Skip to content

Commit af03a82

Browse files
committed
fix(steami_screen): correct ssd1327 file name path
1 parent b79a2a3 commit af03a82

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

lib/steami_screen/steami_screen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Screen,
1313
)
1414
from steami_screen.gc9a01 import GC9A01Display
15-
from steami_screen.sssd1327 import SSD1327Display
15+
from steami_screen.ssd1327 import SSD1327Display
1616

1717
__all__ = [
1818
"BLACK",

lib/steami_screen/steami_screen/gc9a01.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from steami_screen.colors import rgb_to_rgb565
2+
13
"""
24
GC9A01 display wrapper — converts RGB colors to RGB565.
35
@@ -9,10 +11,12 @@
911
from steami_gc9a01 import GC9A01Display
1012
raw = gc9a01.GC9A01(spi, dc, cs, rst, ...)
1113
display = GC9A01Display(raw)
12-
"""
1314
14-
from steami_screen.colors import rgb_to_rgb565
15+
"""
1516

17+
"""
18+
This file has'nt been tested on actual hardware yet
19+
"""
1620

1721
class GC9A01Display:
1822
"""Thin wrapper around a GC9A01 driver that accepts RGB colors."""
File renamed without changes.

0 commit comments

Comments
 (0)