TLDR: We setup an RPi to communicate with log from our UNI-T UT61E. This will allow us to script and automate testing of van electrical components down the road.
Getting an RPi talking to a UNI-T UT61E
This was super painless once I got the right model of multimeter. Turns out the UT61E+ is NOT supported by sigrok (and it says so right on the webpage UT61E if you can read). Note, the model I got came with an RS-232 cable, so I did have to dig out a RS232-USB cable (). This is all it took:
apt-get install sigrok-cli
python3 -m serial.tools.list_ports
/dev/ttyAMA0
/dev/ttyUSB0
sigrok-cli --driver=uni-t-ut61e-ser:conn=/dev/ttyUSB0 -O analog --samples 5
P1: 2.421 kΩ AUTO
P1: 2.421 kΩ AUTO
P1: 2.421 kΩ AUTO
P1: 2.421 kΩ AUTO
P1: 2.421 kΩ AUTO
- Woo
For kicks, I went ahead and hooked up the RD6018 and had a script cycle through voltage commands modulo 10 while reading the voltage off the UT61E all via the RPi. Hello Automated Testing World!