diff options
Diffstat (limited to 'lab_control/function_generator.py')
| -rw-r--r-- | lab_control/function_generator.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/lab_control/function_generator.py b/lab_control/function_generator.py index 20f1b8c..49d04e3 100644 --- a/lab_control/function_generator.py +++ b/lab_control/function_generator.py @@ -5,6 +5,11 @@ class FunctionGenerator:      This interface specifies the common API for all      supported function generator devices.      """ + +    SINE       = 0 +    SQUARE     = 1 +    TRIANGULAR = 3 +      def setOn(self, channel: int) -> None:          """ Enable channel. """ | 
