generated from ClaireCJS/ingest_ics
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.py
executable file
·496 lines (414 loc) · 20.2 KB
/
configure.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#!/usr/bin/env python
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
# https://github.com/mathoudebine/turing-smart-screen-python/
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# This file is the system monitor configuration GUI
import os
import subprocess
import sys
import webbrowser
MIN_PYTHON = (3, 8)
if sys.version_info < MIN_PYTHON:
print("[ERROR] Python %s.%s or later is required." % MIN_PYTHON)
try:
sys.exit(0)
except:
os._exit(0)
try:
import tkinter.ttk as ttk
from tkinter import *
from PIL import ImageTk
except:
print(
"[ERROR] Tkinter dependency not installed. Please follow troubleshooting page: https://github.com/mathoudebine/turing-smart-screen-python/wiki/Troubleshooting#all-os-tkinter-dependency-not-installed")
try:
sys.exit(0)
except:
os._exit(0)
try:
import psutil
import ruamel.yaml
import sv_ttk
from PIL import Image
from serial.tools.list_ports import comports
from tktooltip import ToolTip
except:
print(
"[ERROR] Python dependencies not installed. Please follow start guide: https://github.com/mathoudebine/turing-smart-screen-python/wiki/System-monitor-:-how-to-start")
try:
sys.exit(0)
except:
os._exit(0)
from library.sensors.sensors_python import sensors_fans, is_cpu_fan
TURING_MODEL = "Turing Smart Screen"
USBPCMONITOR_MODEL = "UsbPCMonitor"
XUANFANG_MODEL = "XuanFang rev. B & flagship"
KIPYE_MODEL = "Kipye Qiye Smart Display"
SIMULATED_MODEL = "Simulated screen"
SIZE_3_5_INCH = "3.5\""
SIZE_5_INCH = "5\""
SIZE_8_8_INCH = "8.8\""
SIZE_2_1_INCH = "2.1\""
size_list = (SIZE_3_5_INCH, SIZE_5_INCH)
# Maps between config.yaml values and GUI description
revision_and_size_to_model_map = {
('A', SIZE_3_5_INCH): TURING_MODEL, # Can also be UsbPCMonitor 3.5, does not matter since protocol is the same
('A', SIZE_5_INCH): USBPCMONITOR_MODEL,
('B', SIZE_3_5_INCH): XUANFANG_MODEL,
('C', SIZE_5_INCH): TURING_MODEL,
('D', SIZE_3_5_INCH): KIPYE_MODEL,
('SIMU', SIZE_3_5_INCH): SIMULATED_MODEL,
('SIMU5', SIZE_5_INCH): SIMULATED_MODEL,
}
model_and_size_to_revision_map = {
(TURING_MODEL, SIZE_3_5_INCH): 'A',
(USBPCMONITOR_MODEL, SIZE_3_5_INCH): 'A',
(USBPCMONITOR_MODEL, SIZE_5_INCH): 'A',
(XUANFANG_MODEL, SIZE_3_5_INCH): 'B',
(TURING_MODEL, SIZE_5_INCH): 'C',
(KIPYE_MODEL, SIZE_3_5_INCH): 'D',
(SIMULATED_MODEL, SIZE_3_5_INCH): 'SIMU',
(SIMULATED_MODEL, SIZE_5_INCH): 'SIMU5',
}
hw_lib_map = {"AUTO": "Automatic", "LHM": "LibreHardwareMonitor (admin.)", "PYTHON": "Python libraries",
"STUB": "Fake random data", "STATIC": "Fake static data"}
reverse_map = {False: "classic", True: "reverse"}
themes_dir = 'res/themes'
def get_theme_data(name: str):
dir = os.path.join(themes_dir, name)
# checking if it is a directory
if os.path.isdir(dir):
# Check if a theme.yaml file exists
theme = os.path.join(dir, 'theme.yaml')
if os.path.isfile(theme):
# Get display size from theme.yaml
with open(theme, "rt", encoding='utf8') as stream:
theme_data, ind, bsi = ruamel.yaml.util.load_yaml_guess_indent(stream)
return theme_data
return None
def get_themes(size: str):
themes = []
for filename in os.listdir(themes_dir):
theme_data = get_theme_data(filename)
if theme_data and theme_data['display'].get("DISPLAY_SIZE", '3.5"') == size:
themes.append(filename)
return sorted(themes, key=str.casefold)
def get_theme_size(name: str) -> str:
theme_data = get_theme_data(name)
return theme_data['display'].get("DISPLAY_SIZE", '3.5"')
def get_com_ports():
com_ports_names = ["Automatic detection"] # Add manual entry on top for automatic detection
com_ports = comports()
for com_port in com_ports:
com_ports_names.append(com_port.name)
return com_ports_names
def get_net_if():
if_list = list(psutil.net_if_addrs().keys())
if_list.insert(0, "None") # Add manual entry on top for unavailable/not selected interface
return if_list
def get_fans():
fan_list = list()
auto_detected_cpu_fan = "None"
for name, entries in sensors_fans().items():
for entry in entries:
fan_list.append("%s/%s (%d%% - %d RPM)" % (name, entry.label, entry.percent, entry.current))
if (is_cpu_fan(entry.label) or is_cpu_fan(name)) and auto_detected_cpu_fan == "None":
auto_detected_cpu_fan = "Auto-detected: %s/%s" % (name, entry.label)
fan_list.insert(0, auto_detected_cpu_fan) # Add manual entry on top if auto-detection succeeded
return fan_list
class TuringConfigWindow:
def __init__(self):
self.window = Tk()
self.window.title('Turing System Monitor configuration')
self.window.geometry("770x570")
self.window.iconphoto(True, PhotoImage(file="res/icons/monitor-icon-17865/64.png"))
# When window gets focus again, reload theme preview in case it has been updated by theme editor
self.window.bind("<FocusIn>", self.on_theme_change)
self.window.after(0, self.on_fan_speed_update)
# Make TK look better with Sun Valley ttk theme
sv_ttk.set_theme("light")
self.theme_preview_img = None
self.theme_preview = ttk.Label(self.window)
self.theme_preview.place(x=10, y=10)
self.theme_author = ttk.Label(self.window)
sysmon_label = ttk.Label(self.window, text='Display configuration', font='bold')
sysmon_label.place(x=320, y=0)
self.model_label = ttk.Label(self.window, text='Smart screen model')
self.model_label.place(x=320, y=35)
self.model_cb = ttk.Combobox(self.window, values=list(dict.fromkeys((revision_and_size_to_model_map.values()))),
state='readonly')
self.model_cb.bind('<<ComboboxSelected>>', self.on_model_change)
self.model_cb.place(x=500, y=30, width=250)
self.size_label = ttk.Label(self.window, text='Smart screen size')
self.size_label.place(x=320, y=75)
self.size_cb = ttk.Combobox(self.window, values=size_list, state='readonly')
self.size_cb.bind('<<ComboboxSelected>>', self.on_size_change)
self.size_cb.place(x=500, y=70, width=250)
self.com_label = ttk.Label(self.window, text='COM port')
self.com_label.place(x=320, y=115)
self.com_cb = ttk.Combobox(self.window, values=get_com_ports(), state='readonly')
self.com_cb.place(x=500, y=110, width=250)
self.orient_label = ttk.Label(self.window, text='Orientation')
self.orient_label.place(x=320, y=155)
self.orient_cb = ttk.Combobox(self.window, values=list(reverse_map.values()), state='readonly')
self.orient_cb.place(x=500, y=150, width=250)
self.brightness_string = StringVar()
self.brightness_label = ttk.Label(self.window, text='Brightness')
self.brightness_label.place(x=320, y=195)
self.brightness_slider = ttk.Scale(self.window, from_=0, to=100, orient=HORIZONTAL,
command=self.on_brightness_change)
self.brightness_slider.place(x=550, y=195, width=180)
self.brightness_val_label = ttk.Label(self.window, textvariable=self.brightness_string)
self.brightness_val_label.place(x=500, y=195)
self.brightness_warning_label = ttk.Label(self.window,
text="⚠ Turing 3.5\" displays can get hot at high brightness!",
foreground='#ff8c00')
sysmon_label = ttk.Label(self.window, text='System Monitor Configuration', font='bold')
sysmon_label.place(x=320, y=260)
self.theme_label = ttk.Label(self.window, text='Theme')
self.theme_label.place(x=320, y=300)
self.theme_cb = ttk.Combobox(self.window, state='readonly')
self.theme_cb.place(x=500, y=295, width=250)
self.theme_cb.bind('<<ComboboxSelected>>', self.on_theme_change)
self.hwlib_label = ttk.Label(self.window, text='Hardware monitoring')
self.hwlib_label.place(x=320, y=340)
if sys.platform != "win32":
del hw_lib_map["LHM"] # LHM is for Windows platforms only
self.hwlib_cb = ttk.Combobox(self.window, values=list(hw_lib_map.values()), state='readonly')
self.hwlib_cb.place(x=500, y=335, width=250)
self.hwlib_cb.bind('<<ComboboxSelected>>', self.on_hwlib_change)
self.eth_label = ttk.Label(self.window, text='Ethernet interface')
self.eth_label.place(x=320, y=380)
self.eth_cb = ttk.Combobox(self.window, values=get_net_if(), state='readonly')
self.eth_cb.place(x=500, y=375, width=250)
self.wl_label = ttk.Label(self.window, text='Wi-Fi interface')
self.wl_label.place(x=320, y=420)
self.wl_cb = ttk.Combobox(self.window, values=get_net_if(), state='readonly')
self.wl_cb.place(x=500, y=415, width=250)
# For Windows platform only
self.lhm_admin_warning = ttk.Label(self.window,
text="❌ Restart as admin. or select another Hardware monitoring",
foreground='#f00')
# For platform != Windows
self.cpu_fan_label = ttk.Label(self.window, text='CPU fan (?)')
self.cpu_fan_label.config(foreground="#a3a3ff", cursor="hand2")
self.cpu_fan_cb = ttk.Combobox(self.window, values=get_fans(), state='readonly')
self.tooltip = ToolTip(self.cpu_fan_label,
msg="If \"None\" is selected, CPU fan was not auto-detected.\n"
"Manually select your CPU fan from the list.\n\n"
"Fans missing from the list? Install lm-sensors package\n"
"and run 'sudo sensors-detect' command, then reboot.")
self.edit_theme_btn = ttk.Button(self.window, text="Edit theme", command=lambda: self.on_theme_editor_click())
self.edit_theme_btn.place(x=310, y=510, height=50, width=130)
self.save_btn = ttk.Button(self.window, text="Save settings", command=lambda: self.on_save_click())
self.save_btn.place(x=450, y=510, height=50, width=130)
self.save_run_btn = ttk.Button(self.window, text="Save and run", command=lambda: self.on_saverun_click())
self.save_run_btn.place(x=590, y=510, height=50, width=130)
self.config = None
self.load_config_values()
def run(self):
self.window.mainloop()
def load_theme_preview(self):
try:
theme_preview = Image.open("res/themes/" + self.theme_cb.get() + "/preview.png")
except:
theme_preview = Image.open("res/docs/no-preview.png")
finally:
if theme_preview.width > theme_preview.height:
theme_preview = theme_preview.resize((300, 200), Image.Resampling.LANCZOS)
else:
theme_preview = theme_preview.resize((280, 420), Image.Resampling.LANCZOS)
self.theme_preview_img = ImageTk.PhotoImage(theme_preview)
self.theme_preview.config(image=self.theme_preview_img)
theme_data = get_theme_data(self.theme_cb.get())
author_name = theme_data.get('author', 'unknown')
self.theme_author.config(text="Author: " + author_name)
if author_name.startswith("@"):
self.theme_author.config(foreground="#a3a3ff", cursor="hand2")
self.theme_author.bind("<Button-1>",
lambda e: webbrowser.open_new_tab("https://github.com/" + author_name[1:]))
else:
self.theme_author.config(foreground="#a3a3a3", cursor="")
self.theme_author.unbind("<Button-1>")
self.theme_author.place(x=10, y=self.theme_preview_img.height() + 15)
def load_config_values(self):
with open("config.yaml", "rt", encoding='utf8') as stream:
self.config, ind, bsi = ruamel.yaml.util.load_yaml_guess_indent(stream)
# Check if theme is valid
if get_theme_data(self.config['config']['THEME']) is None:
# Theme from config.yaml is not valid: use first theme available default size 3.5"
self.config['config']['THEME'] = get_themes(SIZE_3_5_INCH)[0]
try:
self.theme_cb.set(self.config['config']['THEME'])
except:
self.theme_cb.set("")
self.load_theme_preview()
try:
self.hwlib_cb.set(hw_lib_map[self.config['config']['HW_SENSORS']])
except:
self.hwlib_cb.current(0)
try:
if self.config['config']['ETH'] == "":
self.eth_cb.current(0)
else:
self.eth_cb.set(self.config['config']['ETH'])
except:
self.eth_cb.current(0)
try:
if self.config['config']['WLO'] == "":
self.wl_cb.current(0)
else:
self.wl_cb.set(self.config['config']['WLO'])
except:
self.wl_cb.current(0)
try:
if self.config['config']['COM_PORT'] == "AUTO":
self.com_cb.current(0)
else:
self.com_cb.set(self.config['config']['COM_PORT'])
except:
self.com_cb.current(0)
# Guess display size from theme in the configuration
size = get_theme_size(self.config['config']['THEME'])
try:
self.size_cb.set(size)
except:
self.size_cb.current(0)
# Guess model from revision and size
revision = self.config['display']['REVISION']
try:
self.model_cb.set(revision_and_size_to_model_map[(revision, size)])
except:
self.model_cb.current(0)
try:
self.orient_cb.set(reverse_map[self.config['display']['DISPLAY_REVERSE']])
except:
self.orient_cb.current(0)
try:
self.brightness_slider.set(int(self.config['display']['BRIGHTNESS']))
except:
self.brightness_slider.set(50)
try:
if self.config['config']['CPU_FAN'] == "AUTO":
self.cpu_fan_cb.current(0)
else:
self.cpu_fan_cb.set(self.config['config']['CPU_FAN'])
except:
self.cpu_fan_cb.current(0)
# Reload content on screen
self.on_model_change()
self.on_size_change()
self.on_theme_change()
self.on_brightness_change()
self.on_hwlib_change()
def save_config_values(self):
self.config['config']['THEME'] = self.theme_cb.get()
self.config['config']['HW_SENSORS'] = [k for k, v in hw_lib_map.items() if v == self.hwlib_cb.get()][0]
if self.eth_cb.current() == 0:
self.config['config']['ETH'] = ""
else:
self.config['config']['ETH'] = self.eth_cb.get()
if self.wl_cb.current() == 0:
self.config['config']['WLO'] = ""
else:
self.config['config']['WLO'] = self.wl_cb.get()
if self.com_cb.current() == 0:
self.config['config']['COM_PORT'] = "AUTO"
else:
self.config['config']['COM_PORT'] = self.com_cb.get()
if self.cpu_fan_cb.current() == 0:
self.config['config']['CPU_FAN'] = "AUTO"
else:
self.config['config']['CPU_FAN'] = self.cpu_fan_cb.get().split(' ')[0]
self.config['display']['REVISION'] = model_and_size_to_revision_map[(self.model_cb.get(), self.size_cb.get())]
self.config['display']['DISPLAY_REVERSE'] = [k for k, v in reverse_map.items() if v == self.orient_cb.get()][0]
self.config['display']['BRIGHTNESS'] = int(self.brightness_slider.get())
with open("config.yaml", "w", encoding='utf-8') as file:
ruamel.yaml.YAML().dump(self.config, file)
def on_theme_change(self, e=None):
self.load_theme_preview()
def on_theme_editor_click(self):
subprocess.Popen(os.path.join(os.getcwd(), "theme-editor.py") + " \"" + self.theme_cb.get() + "\"", shell=True)
def on_save_click(self):
self.save_config_values()
def on_saverun_click(self):
self.save_config_values()
subprocess.Popen(os.path.join(os.getcwd(), "main.py"), shell=True)
self.window.destroy()
def on_brightness_change(self, e=None):
self.brightness_string.set(str(int(self.brightness_slider.get())) + "%")
self.show_hide_brightness_warning()
def on_model_change(self, e=None):
self.show_hide_brightness_warning()
model = self.model_cb.get()
if model == SIMULATED_MODEL:
self.com_cb.configure(state="disabled", foreground="#C0C0C0")
self.orient_cb.configure(state="disabled", foreground="#C0C0C0")
self.brightness_slider.configure(state="disabled")
self.brightness_val_label.configure(foreground="#C0C0C0")
else:
self.com_cb.configure(state="readonly", foreground="#000")
self.orient_cb.configure(state="readonly", foreground="#000")
self.brightness_slider.configure(state="normal")
self.brightness_val_label.configure(foreground="#000")
def on_size_change(self, e=None):
size = self.size_cb.get()
themes = get_themes(size)
self.theme_cb.config(values=themes)
if not self.theme_cb.get() in themes:
# The selected theme does not exist anymore / is not allowed for this screen model : select 1st theme avail.
self.theme_cb.set(themes[0])
self.show_hide_brightness_warning()
def on_hwlib_change(self, e=None):
hwlib = [k for k, v in hw_lib_map.items() if v == self.hwlib_cb.get()][0]
if hwlib == "STUB" or hwlib == "STATIC":
self.eth_cb.configure(state="disabled", foreground="#C0C0C0")
self.wl_cb.configure(state="disabled", foreground="#C0C0C0")
else:
self.eth_cb.configure(state="readonly", foreground="#000")
self.wl_cb.configure(state="readonly", foreground="#000")
if sys.platform == "win32":
import ctypes
is_admin = ctypes.windll.shell32.IsUserAnAdmin() != 0
if (hwlib == "LHM" or hwlib == "AUTO") and not is_admin:
self.lhm_admin_warning.place(x=320, y=460)
self.save_run_btn.state(["disabled"])
else:
self.lhm_admin_warning.place_forget()
self.save_run_btn.state(["!disabled"])
else:
if hwlib == "PYTHON" or hwlib == "AUTO":
self.cpu_fan_label.place(x=320, y=460)
self.cpu_fan_cb.place(x=500, y=455, width=250)
else:
self.cpu_fan_label.place_forget()
self.cpu_fan_cb.place_forget()
def show_hide_brightness_warning(self, e=None):
if int(self.brightness_slider.get()) > 50 and self.model_cb.get() == TURING_MODEL and self.size_cb.get() == SIZE_3_5_INCH:
# Show warning for Turing Smart screen 3.5 with high brightness
self.brightness_warning_label.place(x=320, y=225)
else:
self.brightness_warning_label.place_forget()
def on_fan_speed_update(self):
# Update fan speed periodically
prev_value = self.cpu_fan_cb.current() # Save currently selected index
self.cpu_fan_cb.config(values=get_fans())
if prev_value != -1:
self.cpu_fan_cb.current(prev_value) # Force select same index to refresh displayed value
self.window.after(500, self.on_fan_speed_update)
if __name__ == "__main__":
configurator = TuringConfigWindow()
configurator.run()