Werner's Miscellanea
Sign in or create your account | Project List | Help
Werner's Miscellanea Git Source Tree
Root/
| 1 | #!/usr/bin/python |
| 2 | |
| 3 | # |
| 4 | # Read the thermocouple on a PicoTest M3500 connected via USB |
| 5 | # |
| 6 | |
| 7 | # |
| 8 | # This uses the tmp library from |
| 9 | # svn.openmoko.org/developers/werner/ahrt/host/tmc/ |
| 10 | # |
| 11 | |
| 12 | import tmc.instrument, tmc.meter |
| 13 | |
| 14 | tmc.instrument.debug_default = False |
| 15 | tmc.meter.debug_default = False |
| 16 | m = tmc.meter.picotest_m3500a() |
| 17 | m.debug = False |
| 18 | print m.query(":MEAS:TCO?") |
| 19 |
Branches:
master
