From b29694b38a2c0d6e7f7345c2953b6beaed06edc0 Mon Sep 17 00:00:00 2001 From: Markus Schmidl Date: Sat, 5 Aug 2017 01:34:45 +0200 Subject: [PATCH] added bash script to collect data from the dmm --- README.md | 4 ++++ collect.sh | 5 +++++ 2 files changed, 9 insertions(+) create mode 100755 collect.sh diff --git a/README.md b/README.md index 5bd7e37..bed391d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # ut803-plot +## usage + - execute `collect.sh` to collect data from the dmm + - execute `plot_voltage.sh` to plot the voltage readings from the dmm + ## tools from other people - `suspend.sh` script from [erste.de](http://erste.de/UT61/index.html) - `he2325u_hidapi.py` script from [Philipp Klaus](https://github.com/pklaus/ut61e_python) diff --git a/collect.sh b/collect.sh new file mode 100755 index 0000000..3f57401 --- /dev/null +++ b/collect.sh @@ -0,0 +1,5 @@ +#!/bin/bash +while sleep 1; +do + sudo ./suspend.sh && ./he2325u_hidapi.py | ./es51922.py -m plot -f /tmp/ut803; +done