diff options
Diffstat (limited to 'test_ue9.py')
-rwxr-xr-x | test_ue9.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test_ue9.py b/test_ue9.py new file mode 100755 index 0000000..d8a0dff --- /dev/null +++ b/test_ue9.py @@ -0,0 +1,10 @@ + +import ue9qol + +daq = ue9qol.UE9qol() + +daq.setOutputCh(0, 0.5) + +v1 = daq.getInputCh(1) +print(f'ch1 = {v1}') + |