-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlist_devices.py
38 lines (34 loc) · 1.51 KB
/
list_devices.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
import json
from app.drivers.waveshare import get_variant_keys, convert_waveshare_source
if __name__ == '__main__':
print("[")
# Web, HDMI and Pimoroni
list = [
{"value": 'web_only', "label": 'Web only'},
{"value": 'framebuffer', "label": 'HDMI / Framebuffer'},
{"value": 'pimoroni.inky_impression', "label": 'Pimoroni Inky Impression (Python driver + Buttons)'},
{"value": 'pimoroni.inky_python', "label": 'Pimoroni Inky other (Python driver)'},
{"value": 'pimoroni.hyperpixel2r', "label": 'Pimoroni HyperPixel 2.1" Round'},
]
for output in list:
print(f" {json.dumps(output)},")
# Waveshare
variants = [convert_waveshare_source(key) for key in get_variant_keys()]
variants = sorted(variants, key=lambda x: (x.size, x.width, x.height, x.code))
for v in variants:
color = {
"Black": "Black/White",
"BlackWhiteRed": "Black/White/Red",
"BlackWhiteYellow": "Black/White/Yellow",
"BlackWhiteYellowRed": "Black/White/Yellow/Red",
"FourGray": "4 Grayscale",
"SevenColor": "7 Color",
"SpectraSixColor": "Spectra 6 Color",
}.get(v.color_option, v.color_option)
code = "" if v.code == "" else f" ({v.code.upper()})"
output = {
"value": f"waveshare.{v.key}",
"label": f'Waveshare {v.size}"{code} {max(v.width, v.height)}x{min(v.width, v.height)} {color}',
}
print(f" {json.dumps(output)},")
print("]")