added bash script to collect data from the dmm

This commit is contained in:
Markus Schmidl 2017-08-05 01:34:45 +02:00
parent 033a5682e0
commit b29694b38a
2 changed files with 9 additions and 0 deletions

View File

@ -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)

5
collect.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
while sleep 1;
do
sudo ./suspend.sh && ./he2325u_hidapi.py | ./es51922.py -m plot -f /tmp/ut803;
done