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)