Added basic GUI

This commit is contained in:
David Rice
2026-01-07 11:47:54 +00:00
parent 0b11e8541f
commit 8e92a4b47e
19 changed files with 633 additions and 0 deletions

18
test_eth.py Normal file
View File

@@ -0,0 +1,18 @@
import vxi11
class DSO80204B(vxi11.Instrument):
def __init__(self, host, *args, **kwargs):
super(DSO80204B, self).__init__(host, *args, **kwargs)
def get_identification(self):
return self.ask("*IDN?")
def main():
# Get scope
instrument = DSO80204B('192.168.45.2')
print (instrument.get_identification())
if __name__ == "__main__":
main()