Mon, 25 Feb 2008 19:50:49 +0100
An AbstractGPIBDevice and the Command should now behave quite OK ie. one can type d.MyCommand and it will return the value (either from the cache or after having asked it to the device), and use d.FRS = 10000 to send the command "FRS 10000 Hz" to the device transparently.
28
0a7270d439d0
added a start scrip & cleanups
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
1 | #!/usr/bin/python |
35
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
2 | import sys, os |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
3 | try: |
40
1bbea188a7e5
refactoring: moved everything of the library to a "pygpibtoolkit" module.
David Douard <david.douard@logilab.fr>
parents:
35
diff
changeset
|
4 | from pygpibtoolkit.plotter.qgpib_plotter import main |
35
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
5 | except ImportError: |
3b7a38af5c42
Refactored the preference system for the qt gpib plotter app. One can now set the colors for plotting pens.
David Douard <david.douard@logilab.fr>
parents:
32
diff
changeset
|
6 | sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")) |
40
1bbea188a7e5
refactoring: moved everything of the library to a "pygpibtoolkit" module.
David Douard <david.douard@logilab.fr>
parents:
35
diff
changeset
|
7 | from pygpibtoolkit.plotter.qgpib_plotter import main |
28
0a7270d439d0
added a start scrip & cleanups
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
8 | main() |