-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdispectra_simpletest.py
103 lines (81 loc) · 2.32 KB
/
pdispectra_simpletest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
# SPDX-FileCopyrightText: Copyright (c) 2022 Andrew Ferguson for Fergcorp, LLC
#
# SPDX-License-Identifier: Unlicense
"""Simple test script for 1.54" 152x152 tri-color display.
"""
import time
import displayio
import busio
import board
import digitalio
from adafruit_display_text import label
import terminalio
from fergcorp_pdispectra import PDISpectra
BLACK = 0x000000
WHITE = 0xFFFFFF
RED = 0xFF0000
# Change text colors, choose from the following values:
# BLACK, RED, WHITE
FOREGROUND_COLOR = BLACK
BACKGROUND_COLOR = WHITE
displayio.release_displays()
spi_bus = busio.SPI(clock=board.GP18, MOSI=board.GP19, MISO=board.GP16)
# eInk Driver Setup
eink_driver_cs = board.GP17
eink_driver_d_c = board.GP12
eink_driver_busy = board.GP11
eink_driver_res = board.GP1
display_bus = displayio.FourWire(
spi_bus,
command=eink_driver_d_c,
chip_select=eink_driver_cs,
reset=None,
baudrate=100000,
)
RES = digitalio.DigitalInOut(eink_driver_res)
RES.direction = digitalio.Direction.OUTPUT
RES.drive_mode = digitalio.DriveMode.PUSH_PULL
RES.value = False
time.sleep(5 / 1000)
RES.value = True
time.sleep(5 / 1000)
RES.value = False
time.sleep(10 / 1000)
RES = True
time.sleep(5 / 1000)
print("Reset")
print("Creating display")
display = PDISpectra(
display_bus,
height=152,
width=152,
rotation=90,
busy_pin=eink_driver_busy,
swap_rams=True,
)
g = displayio.Group()
# Set a background
background_bitmap = displayio.Bitmap(152, 152, 1)
# Map colors in a palette
palette = displayio.Palette(1)
palette[0] = BACKGROUND_COLOR
# Create a Tilegrid with the background and put in the displayio group
t = displayio.TileGrid(background_bitmap, pixel_shader=palette)
g.append(t)
# Draw simple text using the built-in font into a displayio group
text_group = displayio.Group(scale=2, x=20, y=40)
TEXT = "Hello World!"
text_area = label.Label(terminalio.FONT, text=TEXT, color=FOREGROUND_COLOR)
text_group.append(text_area) # Add this text to the text group
g.append(text_group)
# Place the display group on the screen
display.show(g)
# Refresh the display to have everything show on the display
# NOTE: Do not refresh eInk displays more often than 180 seconds!
display.refresh()
print("Refreshed")
time.sleep(120)
print("done")
while True:
pass