summaryrefslogtreecommitdiffstats
path: root/lab_control/function_generator.py
blob: 35fc1d8c685494e95cce01b1dd564db1cd56eb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class FunctionGenerator:
    SINE       = 0
    SQUARE     = 1
    TRIANGULAR = 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