summaryrefslogtreecommitdiffstats
path: root/src/lab-control/oscilloscope.py
diff options
context:
space:
mode:
authorEddy Pedroni <eddy@0xf7.com>2022-05-24 13:17:04 +0200
committerEddy Pedroni <eddy@0xf7.com>2022-05-24 13:17:04 +0200
commit47873fc9a211f0f74e7f3f312abdf6f21c7b2f91 (patch)
tree6fd0701c0ab47fb1c94cd0097453296b818e1c2c /src/lab-control/oscilloscope.py
parent83e3b55f9986326c213efbdc8ac20559577362c0 (diff)
Added gitignore, restructured repo, added initial tests
Diffstat (limited to 'src/lab-control/oscilloscope.py')
-rw-r--r--src/lab-control/oscilloscope.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/lab-control/oscilloscope.py b/src/lab-control/oscilloscope.py
deleted file mode 100644
index a09f8a0..0000000
--- a/src/lab-control/oscilloscope.py
+++ /dev/null
@@ -1,17 +0,0 @@
-class Oscilloscope:
- def __init__(self):
- raise Exception("This class should not be instantiated directly, please extend it instead")
-
- def measureAmplitude(self, channel: int) -> float:
- pass
-
- def measurePkToPk(self, channel: int) -> float:
- pass
-
- def measureRMS(self, channel: int) -> float:
- pass
-
- def measureFrequency(self, channel: int) -> float:
- pass
-
-