Metadata-Version: 2.1
Name: modbus_solar
Version: 0.1.0
Summary: A small package to pull stats from a Renogy Solar Charge Controller
Home-page: https://gitlab.com/boopzz/modbus-solar
Author: boopzz
Author-email: boopzz <boopzz@pm.me>
License: MIT
Project-URL: Homepage, https://gitlab.com/boopzz/modbus-solar
Project-URL: Issues, https://gitlab.com/boopzz/modbus-solar/issues
Keywords: modbus,solar,renogy
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Modbus Solar

[![pypi](https://img.shields.io/pypi/v/modbus-solar.svg)](https://pypi.org/project/modbus-solar/)
[![python](https://img.shields.io/pypi/pyversions/modbus-solar.svg)](https://pypi.org/project/modbus-solar/)
[![built with nix](https://builtwithnix.org/badge.svg)](https://builtwithnix.org)

This project is to pull stats out of a Renogy DCC50S solar charge controller.

The connection will be made via modbus/RS485.

The end state will be to output stats in `json` format ready to be ingested into something like an InfluxDb instance.


## To Use

1. Python

    ```python
    from modbus_solar import get_all

    stats = get_all()
    ```

1. CLI
    ```bash
    modbus-solar-get-all
    ```
