summaryrefslogtreecommitdiff
path: root/liboctopus/python/demos/adc.py
diff options
context:
space:
mode:
Diffstat (limited to 'liboctopus/python/demos/adc.py')
-rw-r--r--liboctopus/python/demos/adc.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/liboctopus/python/demos/adc.py b/liboctopus/python/demos/adc.py
new file mode 100644
index 0000000..5e55ab7
--- /dev/null
+++ b/liboctopus/python/demos/adc.py
@@ -0,0 +1,19 @@
+
+
+from octopus import *
+import time
+
+
+op=octopus_context()
+octopus_init(op)
+octopus_open(op)
+octopus_adc_init(op, 33)
+octopus_adc_ref(op, 2)
+
+while 1:
+ value = octopus_adc_get(op, 33)
+ callin = "Value %i" % value
+ print callin
+ time.sleep(1)
+
+