-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathutils.py
119 lines (95 loc) · 5.19 KB
/
utils.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
110
111
112
113
114
115
116
117
118
119
from rgbmatrix import RGBMatrixOptions, graphics
import collections
import argparse
import os
import debug
import datetime
from tzlocal import get_localzone
import pytz
# get local timezone
local_tz = get_localzone()
def get_file(path):
dir = os.path.dirname(__file__)
return os.path.join(dir, path)
def center_text(text_width, center_pos):
return abs(center_pos - (text_width / 2))
def split_string(string, num_chars):
return [(string[i:i + num_chars]).strip() for i in range(0, len(string), num_chars)]
def args():
parser = argparse.ArgumentParser()
# Options for the rpi-rgb-led-matrix library
parser.add_argument("--led-rows", action="store",
help="Display rows. 16 for 16x32, 32 for 32x32. (Default: 32)", default=32, type=int)
parser.add_argument("--led-cols", action="store",
help="Panel columns. Typically 32 or 64. (Default: 64)", default=64, type=int)
parser.add_argument("--led-chain", action="store",
help="Daisy-chained boards. (Default: 1)", default=1, type=int)
parser.add_argument("--led-parallel", action="store",
help="For Plus-models or RPi2: parallel chains. 1..3. (Default: 1)", default=1, type=int)
parser.add_argument("--led-pwm-bits", action="store",
help="Bits used for PWM. Range 1..11. (Default: 11)", default=11, type=int)
parser.add_argument("--led-brightness", action="store",
help="Sets brightness level. Range: 1..100. (Default: 100)", default=100, type=int)
parser.add_argument("--led-gpio-mapping", help="Hardware Mapping: regular, adafruit-hat, adafruit-hat-pwm",
choices=['regular', 'adafruit-hat', 'adafruit-hat-pwm'], type=str)
parser.add_argument("--led-scan-mode", action="store",
help="Progressive or interlaced scan. 0 = Progressive, 1 = Interlaced. (Default: 1)", default=1, choices=range(2), type=int)
parser.add_argument("--led-pwm-lsb-nanoseconds", action="store",
help="Base time-unit for the on-time in the lowest significant bit in nanoseconds. (Default: 130)", default=130, type=int)
parser.add_argument("--led-show-refresh", action="store_true",
help="Shows the current refresh rate of the LED panel.")
parser.add_argument("--led-slowdown-gpio", action="store",
help="Slow down writing to GPIO. Range: 0..4. (Default: 1)", choices=range(5), type=int)
parser.add_argument("--led-no-hardware-pulse", action="store",
help="Don't use hardware pin-pulse generation.")
parser.add_argument("--led-rgb-sequence", action="store",
help="Switch if your matrix has led colors swapped. (Default: RGB)", default="RGB", type=str)
parser.add_argument("--led-pixel-mapper", action="store",
help="Apply pixel mappers. e.g \"Rotate:90\"", default="", type=str)
parser.add_argument("--led-row-addr-type", action="store",
help="0 = default; 1 = AB-addressed panels. (Default: 0)", default=0, type=int, choices=[0, 1])
parser.add_argument("--led-multiplexing", action="store",
help="Multiplexing type: 0 = direct; 1 = strip; 2 = checker; 3 = spiral; 4 = Z-strip; 5 = ZnMirrorZStripe; 6 = coreman; 7 = Kaler2Scan; 8 = ZStripeUneven. (Default: 0)", default=0, type=int)
return parser.parse_args()
def led_matrix_options(args):
options = RGBMatrixOptions()
if args.led_gpio_mapping != None:
options.hardware_mapping = args.led_gpio_mapping
options.rows = args.led_rows
options.cols = args.led_cols
options.chain_length = args.led_chain
options.parallel = args.led_parallel
options.row_address_type = args.led_row_addr_type
options.multiplexing = args.led_multiplexing
options.pwm_bits = args.led_pwm_bits
options.brightness = args.led_brightness
options.pwm_lsb_nanoseconds = args.led_pwm_lsb_nanoseconds
options.led_rgb_sequence = args.led_rgb_sequence
try:
options.pixel_mapper_config = args.led_pixel_mapper
except AttributeError:
debug.warning("Your compiled RGB Matrix Library is out of date.")
debug.warning(
"The --led-pixel-mapper argument will not work until it is updated.")
if args.led_show_refresh:
options.show_refresh_rate = 1
if args.led_slowdown_gpio != None:
options.gpio_slowdown = args.led_slowdown_gpio
if args.led_no_hardware_pulse:
options.disable_hardware_pulsing = True
return options
def deep_update(source, overrides):
"""Update a nested dictionary or similar mapping.
Modify ``source`` in place.
"""
for key, value in list(overrides.items()):
if isinstance(value, collections.Mapping) and value:
returned = deep_update(source.get(key, {}), value)
source[key] = returned
else:
source[key] = overrides[key]
return source
def convert_time(utc_dt):
local_dt = datetime.datetime.strptime(
utc_dt, '%Y-%m-%dT%H:%M:%SZ').replace(tzinfo=pytz.utc).astimezone(local_tz)
return local_tz.normalize(local_dt) # .normalize might be unnecessary