~krystianch/es51922-serial

6a9a2447d4482caf73daf8aad2d5e79f0b3232f9 — Krystian ChachuĊ‚a 1 year, 5 months ago 404f279
Add readme
2 files changed, 23 insertions(+), 0 deletions(-)

A README.md
M es51922-serial.py -rw-r--r-- => -rwxr-xr-x
A README.md => README.md +21 -0
@@ 0,0 1,21 @@
# ES51922 Serial

Serial port interface for UNI-T UT61E and other multimeters with the ES51922 chip.

## Usage

```text
$ ./es51922-serial.py /dev/ttyUSB0
0.00295 V
0.00276 V
0.00261 V
0.00253 V
0.00248 V
0.00248 V
0.00233 V
0.00227 V
```

## Documents

* [Cyrustek ES51922 datasheet](https://files.krystianch.com/ES51922.pdf)

M es51922-serial.py => es51922-serial.py +2 -0
@@ 1,3 1,5 @@
#!/usr/bin/env python3

import argparse
import enum
import sys