summaryrefslogtreecommitdiffstats
path: root/src/lab-control
diff options
context:
space:
mode:
Diffstat (limited to 'src/lab-control')
-rw-r--r--src/lab-control/function_generator.py23
-rw-r--r--src/lab-control/oscilloscope.py17
2 files changed, 0 insertions, 40 deletions
diff --git a/src/lab-control/function_generator.py b/src/lab-control/function_generator.py
deleted file mode 100644
index b7b5266..0000000
--- a/src/lab-control/function_generator.py
+++ /dev/null
@@ -1,23 +0,0 @@
-class FunctionGenerator:
- FUNCTION_SINE = 0
- FUNCTION_SQUARE = 1
- FUNCTION_SAWTOOTH = 2
-
- def __init__(self):
- raise Exception("This class should not be instantiated directly, please extend it instead")
-
- def setOn(self, channel: int) -> None:
- pass
-
- def setOff(self, channel: int) -> None:
- pass
-
- def setFrequency(self, channel: int, frequency: float) -> None:
- pass
-
- def setAmplitude(self, channel: int, amplitude: float) -> None:
- pass
-
- def setFunction(self, channel: int, function: int) -> None:
- pass
-
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
-
-