-
Notifications
You must be signed in to change notification settings - Fork 0
/
icb2.68-BETA0.95b.py.py
234 lines (186 loc) · 8.98 KB
/
icb2.68-BETA0.95b.py.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
# Copyright (C) 2023 Frank IUØESP
#
# 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/>.
# importazione delle librerie necessarie per il funzionamento del programma
import tkinter as tk
import serial
import webbrowser
import serial.tools.list_ports
import random
from PIL import Image, ImageTk
import requests
from io import BytesIO
# dichiarazione della variabile bool random_toggle_active
random_toggle_active = False
def download_image(url):
response = requests.get(url)
if response.status_code == 200:
return Image.open(BytesIO(response.content))
else:
return None
# Definizione della funzione toggle_rts()
def toggle_rts():
if 'ser' in globals():
ser.setRTS(not ser.rts)
if ser.rts:
canvas.itemconfig(rts_led, fill="#FFD700", outline="white")
else:
canvas.itemconfig(rts_led, fill="white")
# Definizione della funzione toggle_dtr()
def toggle_dtr():
if 'ser' in globals():
ser.setDTR(not ser.dtr)
if ser.dtr:
canvas.itemconfig(dtr_led, fill="blue", outline="white")
else:
canvas.itemconfig(dtr_led, fill="white")
# Definizione della funzione set_com_port()
def set_com_port(com_num):
global ser
port = f'COM{com_num}'
if port in available_ports():
ser = serial.Serial(port, timeout=1)
ser.setDTR(False)
ser.setRTS(False)
canvas.itemconfig(dtr_led, fill="white")
canvas.itemconfig(rts_led, fill="white")
status_label.config(text=f"{port} found!", fg="green") # trovo la porta metto il verde per averla trovata
else:
ser = None
status_label.config(text="COM not found", fg="red") # non trovo la porta metto il rosso per non averla trovata
# Definizione della funzione available_ports()
def available_ports():
ports = []
for port, desc, hwid in serial.tools.list_ports.comports():
ports.append(port)
return ports
# Definizione della funzione apri_link()
# def apri_link(event):
# webbrowser.open("https://www.qrzcb.io/icb") # Link al sito web principale
# Definizione della funzione open_url(event)
def open_url(event):
webbrowser.open_new('https://www.qrzcb.io') # https è molto più sicuro, apro il sito in una nuova finestra
# Definzione della funzione random_toggle()
def random_toggle():
global random_toggle_active
random_toggle_active = not random_toggle_active
do_random_toggle()
# Definizione della funzione do_random_toggle()
def do_random_toggle():
global random_toggle_active
if random_toggle_active:
if 'ser' in globals():
random_rts = random.choice([True, False])
random_dtr = random.choice([True, False])
ser.setRTS(random_rts)
ser.setDTR(random_dtr)
if random_rts:
canvas.itemconfig(rts_led, fill="#FFD700", outline="white")
else:
canvas.itemconfig(rts_led, fill="white")
if random_dtr:
canvas.itemconfig(dtr_led, fill="blue", outline="white")
else:
canvas.itemconfig(dtr_led, fill="white")
random_status.config(text="ON", fg="green") # Aggiorna il testo della label con ON di colore verde
else:
random_status.config(text="OFF", fg="red") # Aggiorna il testo della label con OFF di colore rosso
root.after(500, do_random_toggle)
# Inizializzo la finestra contenente il tutto
root = tk.Tk()
# Imposto il titolo
root.title('QRZCB.io - Test Pin RTS & DTR Com Port - V0.80 - QRZCB.io')
root.grid() # Setto l'autodimensionamento della finestra con grid()
root.resizable(False, False) # E' un booleano se non vuoi fare il ridimensionamento devi mettere entrambi a false
root.config(bg="#111111") # Imposto la finestra con questo codice colore
# Imposto il titolo del programma
title_label = tk.Label(root, bg="#111111", fg="white", text='iCB-TEST v0.9b', font=('Arial', 20))
title_label.pack()
# Imposto il collegamento al sito principale
new_label = tk.Label(root, bg="#111111", text='https://www.qrzcb.io',
font=('Arial', 13, 'bold'), fg='#29d9d5', cursor='hand2')
new_label.bind("<Button-1>", open_url)
new_label.pack()
# Imposto la scritta dell'autore del programma
new_label = tk.Label(root, bg="#111111", text='written by Frank IUØESP',
font=('Arial', 11, 'bold'), fg='white')
new_label.pack(pady=10)
# Imposto un link alle istruzioni della scheda sul sito
# new_label = tk.Label(root, bg="#111111", text='Clicca qui per visitare il sito',
# font=('Arial', 11, 'bold'), fg='#29d9d5', cursor='hand2')
# new_label.bind("<Button-1>", apri_link)
# new_label.pack(pady=10)
# imposto il frame contenente le porte com da selezionare
com_frame = tk.Frame(root, bg="#111111")
com_frame.pack(pady=1)
# imposto il valore a 1 per la porta selezionata
com_num = tk.StringVar(value='1')
# Faccio 2 cicli per settare le porte com dalla 1 alla 7 e dalla 7 alla 13
for i in range(1, 7):
tk.Radiobutton(com_frame, bg="#111111", fg="#29d9d5", text=f"COM{i}", variable=com_num, value=f"{i}",
command=lambda i=i: set_com_port(i)).grid(row=0, column=i - 1)
for i in range(7, 13):
tk.Radiobutton(com_frame, bg="#111111", fg="#29d9d5", text=f"COM{i}", variable=com_num, value=f"{i}",
command=lambda i=i: set_com_port(i)).grid(row=1, column=i - 7)
# Imposto uno status che indica la scelta della porta
status_label = tk.Label(root, bg="#111111", fg="yellow", text="Choose COM port !", font=('Arial', 16))
status_label.pack(pady=10)
# Imposto una finestra interna contenente l'immaggine con i led RTS e DTR
canvas = tk.Canvas(root, width=300, height=200, bg="#111111")
canvas.pack(pady=10)
# Importo l'immagine nella finestra di cui sopra
# image_path = "D:\\Documenti\\ProgettiFrank\\iCBEasyInterfaceIU0ESPprogrammaTestSchedaBeta\\interface3d.png"
image_url = "https://www.qrzcb.io/dv/interface3d.png"
image = download_image(image_url)
# img = Image.open(image_url)
pcb_image = ImageTk.PhotoImage(image)
canvas.create_image(0, 0, anchor="nw", image=pcb_image)
# canvas.create_image(30, 20, anchor="nw", image=pcb_image) # aumentato di 30 per la posizione dell'immagine
# Imposto manualmente le coordinate per i led
rts_led = canvas.create_oval(178, 61, 192, 76, fill="white")
# rts_led = canvas.create_oval(208, 81, 222, 96, fill="white") # aumentato di 30 per la posizione dell'immagine
dtr_led = canvas.create_oval(172, 97, 187, 112, fill="white")
# dtr_led = canvas.create_oval(202, 117, 217, 132, fill="white") # aumentato di 30 per la posizione dell'immagine
# Imposto un nuovo frame per i pulsanti Change RTS e Change DTR
button_frame = tk.Frame(root, bg="#111111")
button_frame.pack(pady=10)
# Imposto il bottone RTS
rts_button = tk.Button(button_frame, bg="#111111", fg="#29d9d5", text="Change RTS",
command=toggle_rts, font=('Arial', 15))
rts_button.grid(row=0, column=1, padx=10, pady=10)
# Imposto il bottone DTR
dtr_button = tk.Button(button_frame, bg="#111111", fg="#29d9d5", text="Change DTR",
command=toggle_dtr, font=('Arial', 15))
dtr_button.grid(row=0, column=2, padx=10, pady=10)
# Imposto il Frame per il bottone random
random_frame = tk.Frame(button_frame, bg="#111111")
random_frame.grid(row=1, column=1, padx=10, pady=10)
# Imposto un testo per il random
# random_label = tk.Label(random_frame, bg="#111111", fg="#29d9d5", text="Random Test:", font=('Arial', 12))
# random_label.pack(side=tk.LEFT)
# Imposto il bottone per il test random
random_button = tk.Button(random_frame, bg="#111111", fg="#29d9d5", text="Random",
command=random_toggle, font=('Arial', 12))
random_button.pack()
# Imposto il testo per lo status random OFF o ON
random_status = tk.Label(button_frame, bg="#111111", text="OFF", font=('Arial', 12), fg="red")
random_status.grid(row=1, column=1, columnspan=10)
# Imposto il bottone Chiudi per chiudere il programma
close_button = tk.Button(button_frame, bg="#111111", fg="#29d9d5", text="Chiudi", command=root.quit, font=('Arial', 15))
close_button.grid(row=1, column=2, columnspan=10)
# Loop della finestra del programma
root.mainloop()
# Controllo della variabile ser in caso di errore chiude il programma
if 'ser' in globals():
ser.close()