https://github.com/krystiand/pyrc3563
Python library and CLI tool for RC3563 battery impedance meter.
https://github.com/krystiand/pyrc3563
18650 cli impedance impedance-tester internal-resistance library liion measurements python rc3563 resistance
Last synced: about 1 month ago
JSON representation
Python library and CLI tool for RC3563 battery impedance meter.
- Host: GitHub
- URL: https://github.com/krystiand/pyrc3563
- Owner: KrystianD
- License: mit
- Created: 2021-10-14T15:12:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-22T22:53:34.000Z (over 3 years ago)
- Last Synced: 2024-01-26T07:39:44.890Z (over 2 years ago)
- Topics: 18650, cli, impedance, impedance-tester, internal-resistance, library, liion, measurements, python, rc3563, resistance
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
pyrc3563
=====
Python library and CLI tool for RC3563 battery impedance meter.
### Library usage
```python
from rc3563 import RC3563
rc = RC3563("/dev/ttyUSB0")
while True:
print(rc.read())
```
### CLI tool
```shell
python -m cli /dev/ttyUSB0
# V: 4.118, R: 0.028483 # 28.483 mΩ
# V: 4.118, R: 0.028376 # 28.376 mΩ
# V: 4.118, R: 0.028264 # 28.264 mΩ
# V: 0.000, R: inf # overflow - nothing connected
```
## Credits
Based on the great work of [Maciej Grela](https://gist.github.com/enkiusz/e5e52e22e5d748645bf4d0ebe2c133dd).