-
Notifications
You must be signed in to change notification settings - Fork 0
/
keithleyMain-CLI.py
executable file
·76 lines (57 loc) · 1.64 KB
/
keithleyMain-CLI.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
#!/usr/bin/env python
""" Main program for Keithley Power Supply steering and readout.
"""
#######################################
# Imports
#######################################
# Standard Python Modules
import sys
import keithleyReader
import ConfigParser
import argparse
#import Tkinter
import time
#from threading import Thread
# Command Line Interface
from keithleyCLI import CLI
#######################################
# Argument Parser
#######################################
parser = argparse.ArgumentParser(description='Keithley Power Supply steering and readout software')
parser.add_argument('--config','-c',help='Config file',default='keithley.cfg')
args = parser.parse_args()
print args
config = ConfigParser.ConfigParser()
config.read(args.config)
#######################################
# Definitions
#######################################
filename_config = "config.txt"
keithleys = keithleyReader.get_keithleys(config)
#######################################
# Read and handle the config file
#######################################
# Implement...
#######################################
# Hand over to command line interface
#######################################
myCLI = CLI()
myCLI.set_keithleys(keithleys)
myCLI.cmdloop()
# root = Tkinter.Tk()
# root.minsize(300, 300)
# root.maxsize(300, 300)
#
# li_vars = []
# li_labels = []
# for _ in range(6):
# tmp = Tkinter.StringVar()
# self.li_vars.append( tmp )
# self.li_labels.append( Tkinter.Label(root, textvariable = tmp))
#
# [ l.pack() for l in self.li_labels]
#
# while True:
# time.sleep(1)
# [var.set(str(time.time())) for var in li_vars]
# root.update()