Skip to content

Commit 3d93b3a

Browse files
Frontend to GUI name change
1 parent fdd1242 commit 3d93b3a

30 files changed

Lines changed: 235 additions & 250 deletions

Delta_mode_Keithley_6221_2182/Delta_RT_K6221_K2182_L350_Sensing_Frontend_v5.py renamed to Delta_mode_Keithley_6221_2182/Delta_RT_K6221_K2182_L350_Sensing_GUI_v5.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def launch_plotter_utility():
7171
try:
7272
# Assumes the plotter is in a standard location relative to this script
7373
script_dir = os.path.dirname(os.path.abspath(__file__))
74-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
74+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
7575
if not os.path.exists(plotter_path):
7676
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
7777
return
@@ -85,7 +85,7 @@ def launch_gpib_scanner():
8585
try:
8686
# Assumes the scanner is in a standard location relative to this script
8787
script_dir = os.path.dirname(os.path.abspath(__file__))
88-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
88+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
8989
if not os.path.exists(scanner_path):
9090
messagebox.showerror("File Not Found", f"GPIB Scanner not found at expected path:\n{scanner_path}")
9191
return

Delta_mode_Keithley_6221_2182/Delta_RT_K6221_K2182_L350_T_Control_Frontend_v5.py renamed to Delta_mode_Keithley_6221_2182/Delta_RT_K6221_K2182_L350_T_Control_GUI_v5.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def launch_plotter_utility():
5959
try:
6060
# Assumes the plotter is in a standard location relative to this script
6161
script_dir = os.path.dirname(os.path.abspath(__file__))
62-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
62+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
6363
if not os.path.exists(plotter_path):
6464
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
6565
return
@@ -73,7 +73,7 @@ def launch_gpib_scanner():
7373
try:
7474
# Assumes the scanner is in a standard location relative to this script
7575
script_dir = os.path.dirname(os.path.abspath(__file__))
76-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
76+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
7777
if not os.path.exists(scanner_path):
7878
messagebox.showerror("File Not Found", f"GPIB Scanner not found at expected path:\n{scanner_path}")
7979
return

Delta_mode_Keithley_6221_2182/IV_K6221_DC_Sweep_Frontend_V10.py renamed to Delta_mode_Keithley_6221_2182/IV_K6221_DC_Sweep_GUI_V10.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def run_script_process(script_path):
5454
def launch_plotter_utility():
5555
try:
5656
script_dir = os.path.dirname(os.path.abspath(__file__))
57-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
57+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
5858
if not os.path.exists(plotter_path):
5959
return
6060
Process(target=run_script_process, args=(plotter_path,)).start()
@@ -64,7 +64,7 @@ def launch_plotter_utility():
6464
def launch_gpib_scanner():
6565
try:
6666
script_dir = os.path.dirname(os.path.abspath(__file__))
67-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
67+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
6868
if not os.path.exists(scanner_path):
6969
return
7070
Process(target=run_script_process, args=(scanner_path,)).start()
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def run_script_process(script_path):
5959
def launch_plotter_utility():
6060
"""Finds and launches the plotter utility script in a new process."""
6161
script_dir = os.path.dirname(os.path.abspath(__file__))
62-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
62+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
6363
if not os.path.exists(plotter_path):
6464
messagebox.showerror("File Not Found", f"Plotter Utility not found at:\n{plotter_path}")
6565
return
@@ -70,7 +70,7 @@ def launch_gpib_scanner():
7070
"""Finds and launches the GPIB scanner utility in a new process."""
7171
script_dir = os.path.dirname(os.path.abspath(__file__))
7272
# Assuming the standard PICA project structure
73-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
73+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
7474
if not os.path.exists(scanner_path):
7575
messagebox.showerror("File Not Found", f"GPIB Scanner not found at:\n{scanner_path}")
7676
return

Keithley_2400/RT_K2400_L350_T_Control_Frontend_v3.py renamed to Keithley_2400/RT_K2400_L350_T_Control_GUI_v3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def launch_plotter_utility():
6262
try:
6363
# Assumes the plotter is in a standard location relative to this script
6464
script_dir = os.path.dirname(os.path.abspath(__file__))
65-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
65+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
6666
if not os.path.exists(plotter_path):
6767
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
6868
return
@@ -72,7 +72,7 @@ def launch_plotter_utility():
7272

7373
def launch_gpib_scanner():
7474
script_dir = os.path.dirname(os.path.abspath(__file__))
75-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
75+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
7676
Process(target=run_script_process, args=(scanner_path,)).start()
7777

7878
# -------------------------------------------------------------------------------

Keithley_2400/RT_K2400_L350_T_Sensing_Frontend_v4.py renamed to Keithley_2400/RT_K2400_L350_T_Sensing_GUI_v4.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def launch_plotter_utility():
110110
try:
111111
# Assumes the plotter is in a standard location relative to this script
112112
script_dir = os.path.dirname(os.path.abspath(__file__))
113-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
113+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
114114
if not os.path.exists(plotter_path):
115115
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
116116
return
@@ -122,7 +122,7 @@ def launch_gpib_scanner():
122122
"""Finds and launches the GPIB scanner utility in a new process."""
123123
try:
124124
script_dir = os.path.dirname(os.path.abspath(__file__))
125-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
125+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
126126
Process(target=run_script_process, args=(scanner_path,)).start()
127127
except Exception as e:
128128
messagebox.showerror("Launch Error", f"Failed to launch GPIB Scanner: {e}")

Keithley_2400_Keithley_2182/IV_K2400_K2182_Frontend_v3.py renamed to Keithley_2400_Keithley_2182/IV_K2400_K2182_GUI_v3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ def run_script_process(script_path):
5858
def launch_plotter_utility():
5959
"""Finds and launches the plotter utility script in a new process."""
6060
script_dir = os.path.dirname(os.path.abspath(__file__))
61-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
61+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
6262
Process(target=run_script_process, args=(plotter_path,)).start()
6363

6464
def launch_gpib_scanner():
6565
"""Finds and launches the GPIB scanner utility in a new process."""
6666
try:
6767
# Assumes the scanner is in a standard location relative to this script
6868
script_dir = os.path.dirname(os.path.abspath(__file__))
69-
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
69+
scanner_path = os.path.join(script_dir, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
7070
if not os.path.exists(scanner_path):
7171
messagebox.showerror("File Not Found", f"GPIB Scanner not found at expected path:\n{scanner_path}")
7272
return

Keithley_2400_Keithley_2182/RT_K2400_2182_L350_T_Sensing_Frontend_v2.py renamed to Keithley_2400_Keithley_2182/RT_K2400_2182_L350_T_Sensing_GUI_v2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# Name: R-T Sweep Passive Frontend for K2400/2182 & LS350
2+
# Name: R-T Sweep Passive GUI for K2400/2182 & LS350
33
# Purpose: Provide a professional GUI for passively logging R vs T data.
44
# This version does not control temperature.
55
# Author: Prathamesh Deshmukh
@@ -63,7 +63,7 @@ def launch_plotter_utility():
6363
try:
6464
# Assumes the plotter is in a standard location relative to this script
6565
script_dir = os.path.dirname(os.path.abspath(__file__))
66-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
66+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
6767
if not os.path.exists(plotter_path):
6868
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
6969
return
@@ -73,7 +73,7 @@ def launch_plotter_utility():
7373

7474
def launch_gpib_scanner():
7575
"""Finds and launches the GPIB scanner utility in a new process."""
76-
scanner_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
76+
scanner_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
7777
Process(target=run_script_process, args=(scanner_path,)).start()
7878

7979

Keithley_2400_Keithley_2182/RT_K2400_K2182_T_Control_Frontend_v3.py renamed to Keithley_2400_Keithley_2182/RT_K2400_K2182_T_Control_GUI_v3.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# Name: V-T Sweep Active Frontend for K2400/2182 & LS350
2+
# Name: V-T Sweep Active GUI for K2400/2182 & LS350
33
# Purpose: Provide a professional GUI for performing automated V vs T sweeps
44
# with active temperature control (stabilize then ramp).
55
# Author: Prathamesh Deshmukh
@@ -56,7 +56,7 @@ def launch_plotter_utility():
5656
try:
5757
# Assumes the plotter is in a standard location relative to this script
5858
script_dir = os.path.dirname(os.path.abspath(__file__))
59-
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_Frontend_v3.py")
59+
plotter_path = os.path.join(script_dir, "..", "Utilities", "PlotterUtil_GUI_v3.py")
6060
if not os.path.exists(plotter_path):
6161
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
6262
return
@@ -68,7 +68,7 @@ def launch_plotter_utility():
6868
def launch_gpib_scanner():
6969
"""Finds and launches the GPIB scanner utility in a new process."""
7070
base_path = os.path.dirname(os.path.abspath(__file__))
71-
scanner_path = os.path.join(base_path, "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
71+
scanner_path = os.path.join(base_path, "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
7272
Process(target=run_script_process, args=(scanner_path,)).start()
7373

7474

Keithley_6517B/High_Resistance/IV_K6517B_Frontend_v11.py renamed to Keithley_6517B/High_Resistance/IV_K6517B_GUI_v11.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def launch_plotter_utility():
6464
try:
6565
# Assumes the plotter is in a standard location relative to this script
6666
script_dir = os.path.dirname(os.path.abspath(__file__))
67-
plotter_path = os.path.join(script_dir, "..", "..", "Utilities", "PlotterUtil_Frontend_v3.py")
67+
plotter_path = os.path.join(script_dir, "..", "..", "Utilities", "PlotterUtil_GUI_v3.py")
6868
if not os.path.exists(plotter_path):
6969
messagebox.showerror("File Not Found", f"Plotter utility not found at expected path:\n{plotter_path}")
7070
return
@@ -77,7 +77,7 @@ def launch_gpib_scanner():
7777
try:
7878
# Assumes the scanner is in a standard location relative to this script
7979
script_dir = os.path.dirname(os.path.abspath(__file__))
80-
scanner_path = os.path.join(script_dir, "..", "..", "Utilities", "GPIB_Instrument_Scanner_Frontend_v4.py")
80+
scanner_path = os.path.join(script_dir, "..", "..", "Utilities", "GPIB_Instrument_Scanner_GUI_v4.py")
8181
if not os.path.exists(scanner_path):
8282
messagebox.showerror("File Not Found", f"GPIB Scanner not found at expected path:\n{scanner_path}")
8383
return

0 commit comments

Comments
 (0)