-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathmatrix.py
executable file
·71 lines (59 loc) · 1.73 KB
/
matrix.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014-19 Richard Hull and contributors
# See LICENSE.rst for details.
# PYTHON_ARGCOMPLETE_OK
"""
The Matrix.
Adapted from:
https://github.com/pimoroni/unicorn-hat-hd/blob/master/examples/matrix-hd.py
"""
from random import randint, gauss
from demo_opts import get_device
from luma.core.render import canvas
from luma.core.sprite_system import framerate_regulator
def matrix(device):
wrd_rgb = [
(154, 173, 154),
(0, 255, 0),
(0, 235, 0),
(0, 220, 0),
(0, 185, 0),
(0, 165, 0),
(0, 128, 0),
(0, 0, 0),
(154, 173, 154),
(0, 145, 0),
(0, 125, 0),
(0, 100, 0),
(0, 80, 0),
(0, 60, 0),
(0, 40, 0),
(0, 0, 0)
]
clock = 0
blue_pilled_population = []
max_population = device.width * 8
regulator = framerate_regulator(fps=10)
def increase_population():
blue_pilled_population.append([randint(0, device.width), 0, gauss(1.2, 0.6)])
while True:
clock += 1
with regulator:
with canvas(device, dither=True) as draw:
for person in blue_pilled_population:
x, y, speed = person
for rgb in wrd_rgb:
if 0 <= y < device.height:
draw.point((x, y), fill=rgb)
y -= 1
person[1] += speed
if clock % 5 == 0 or clock % 3 == 0:
increase_population()
while len(blue_pilled_population) > max_population:
blue_pilled_population.pop(0)
if __name__ == "__main__":
try:
matrix(get_device())
except KeyboardInterrupt:
pass