-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathdemo.py
executable file
·109 lines (85 loc) · 3.01 KB
/
demo.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
104
105
106
107
108
109
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014-2023 Richard Hull and contributors
# See LICENSE.rst for details.
# PYTHON_ARGCOMPLETE_OK
"""
Use misc draw commands to create a simple image.
Ported from:
https://github.com/adafruit/Adafruit_Python_SSD1306/blob/master/examples/shapes.py
"""
import time
import datetime
from demo_opts import get_device
from luma.core.render import canvas
def primitives(device, draw):
# Draw some shapes
# First define some constants to allow easy resizing of shapes
padding = 2
shape_width = 20
top = padding
bottom = device.height - padding - 1
# Move left to right keeping track of the current x position for drawing shapes
x = padding
# Draw an ellipse
draw.ellipse((x, top, x + shape_width, bottom), outline="red", fill="black")
x += shape_width + padding
# Draw a rectangle
draw.rectangle((x, top, x + shape_width, bottom), outline="blue", fill="black")
x += shape_width + padding
# Draw a triangle
draw.polygon([(x, bottom), (x + shape_width / 2, top), (x + shape_width, bottom)], outline="green", fill="black")
x += shape_width + padding
# Draw an X
draw.line((x, bottom, x + shape_width, top), fill="yellow")
draw.line((x, top, x + shape_width, bottom), fill="yellow")
x += shape_width + padding
# Write two lines of text
left, t, right, bottom = draw.textbbox((0, 0), 'World!')
w, h = right - left, bottom - t
x = device.width - padding - w
draw.rectangle((x, top + 4, x + w, top + h), fill="black")
draw.rectangle((x, top + 16, x + w, top + 16 + h), fill="black")
draw.text((device.width - padding - w, top + 4), 'Hello', fill="cyan")
draw.text((device.width - padding - w, top + 16), 'World!', fill="purple")
# Draw a rectangle of the same size of screen
draw.rectangle(device.bounding_box, outline="white")
def main():
device = get_device()
print("Testing basic canvas graphics...")
for _ in range(2):
with canvas(device) as draw:
primitives(device, draw)
time.sleep(5)
print("Testing contrast (dim/bright cycles)...")
for _ in range(5):
for level in range(255, -1, -10):
device.contrast(level)
time.sleep(0.1)
time.sleep(0.5)
for level in range(0, 255, 10):
device.contrast(level)
time.sleep(0.1)
time.sleep(1)
print("Testing display ON/OFF...")
for _ in range(5):
time.sleep(0.5)
device.hide()
time.sleep(0.5)
device.show()
print("Testing clear display...")
time.sleep(2)
device.clear()
print("Testing screen updates...")
time.sleep(2)
for x in range(40):
with canvas(device) as draw:
now = datetime.datetime.now()
draw.text((x, 4), str(now.date()), fill="white")
draw.text((10, 16), str(now.time()), fill="white")
time.sleep(0.1)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
pass