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