Giter Club home page Giter Club logo

renogy-rover's Introduction

renogy-rover

A pure Javascript driver for the Renogy Rover 20/40 AMP MPPT controller.

[NPM download](npm path) NPM version Build Status

The Renogy Rover is a Maximum Power Point Tracking (MPPT) solar power system controller available for 20 or 40 amps. It provides a modbus protocol for monitoring real time or historical data.

This module allows use of a small computer such as a RaspberryPi to remotely monitor a solar power system and communicate with the cloud.

It uses modbus-serial npm for the low level modbus transactions.

**This package allows monitoring solar power systems.



Install

npm install renogy-rover

What can I do with this module ?

Monitor solar power systems with a RaspberryPi, Linux computer, PC, or Mac.

Compatibility

Functions implemented:
  • connect

  • getProductModel

  • getPanelState

  • getBatteryState

  • getHistoricalParameters

Examples

Connect
var config = {};
config.port = port;

var renogy = new rover.RenogyRover(config);

renogy.connect(function(error) {
    // .. connected
});
Get Product Model
renogy.getProductModel(function(error, model) {
    console.log("Renogy Model is: ");
    console.log(model);
});
Get Panel State
renogy.getPanelState(function(error, panelState) {
    console.log("panelState=");
    console.log(panelState);
});
Get Battery State
renogy.getBatteryState(function(error, batteryState) {
    console.log("batteryState=");
    console.log(batteryState);
});
Get Historical Parameters
renogy.getHistoricalParameters(function(error, historicalParameters) {
    console.log("historicalParameters=");
    console.log(historicalParameters);
});
Monitoring Utility

export RENOGY_ROVER_PORT=/dev/someport

export RENOGY_ROVER_INTERVAL=30

npm start

renogy-rover's People

Contributors

menloparkinnovation avatar

Watchers

 avatar  avatar

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.