Giter Club home page Giter Club logo

pyrc3563's Introduction

pyrc3563

Python library and CLI tool for RC3563 battery impedance meter.

Library usage

from rc3563 import RC3563

rc = RC3563("/dev/ttyUSB0")
while True:
    print(rc.read())

CLI tool

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.

pyrc3563's People

Contributors

krystiand avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

pyrc3563's Issues

Typo?

Typo in README.md??
pyrc3586 vs. pyrc3563??

Ludwich

Simple Try to pausing reading

Hi Krystian,
i do the simple Test to modify your Cod to Pause readings for 5 seconds.
I see with this methode reading is not actuall after change object (Resistor).
Do i stop Programm and restart it is a correct Measurement.

My Plan:
I wanted to delay the measurement to change the measurement object (from cell to cell).
These values ​​should then be written to a file log. (time,cell,V,R)

Can you tell me how (where) I should put a break?

Ludwich

from rc3563 import *
import time
# import argparse
preset_port = "COM5" # '/dev/ttyUSB0'

def main():
    #argparser = argparse.ArgumentParser(prog="python -m cli")
    #argparser.add_argument("path", help="Serial port path")
    #args = argparser.parse_args()
    rc = RC3563(preset_port)
    while True:
        pkt = rc.read()
        time.sleep(5.5) # Pause 5,5 sec
        print(f"V: {pkt.voltage_v:.3f}, R: {pkt.resistance_ohm:.6f}")
        
main()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.