-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageScroller.py
57 lines (48 loc) · 1.4 KB
/
ImageScroller.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
#! /usr/bin/env python
import time
from datetime import datetime, timedelta
from PIL import Image
from rgbmatrix import RGBMatrix, RGBMatrixOptions
# set matrix options
options = RGBMatrixOptions()
options.chain_length = 2
options.cols = 32
options.rows = 32
options.parallel = 1
options.brightness = 50
options.disable_hardware_pulsing = True
options.drop_privileges = 1
options.gpio_slowdown = 1
options.hardware_mapping = 'adafruit-hat'
options.inverse_colors = False
options.led_rgb_sequence = "RGB"
options.multiplexing = 0
options.pixel_mapper_config = ''
options.pwm_bits = 11
options.pwm_dither_bits = 0
options.pwm_lsb_nanoseconds = 130
options.row_address_type = 0
options.scan_mode = 0
options.show_refresh_rate = False
matrix = RGBMatrix(options=options)
# set max duration and text
duration = datetime.now() + timedelta(seconds=30)
# create image
image = Image.open('../img/pacman.jpg').convert('RGB')
img_width, img_height = image.size
image.thumbnail((img_width / 2, img_height / 2), Image.ANTIALIAS)
# image start, x and y position
img_start_pos = img_x_pos = 64
img_y_pos = (32 - (img_height / 2)) / 2
while True:
if datetime.now() >= duration:
break
# change position
img_x_pos -= 1
if (img_x_pos + img_width / 2) < 0:
img_x_pos = img_start_pos
# show on matrix
matrix.Clear()
matrix.SetImage(image, img_x_pos, img_y_pos)
time.sleep(0.05)
matrix.Clear()