Home - jgyates/genmon GitHub Wiki

Introduction

This project will monitor a backup generator that utilizes the Generac Controllers over a WiFi or wired connection. The following generator controllers are supported:

The project is written mostly in python and has been tested with a Raspberry Pi 3 (Pi Zero, Pi Zero W, Pi 2, Pi 3b+ and Pi4 have also been validated). To use this project you would need to create a physical enclosure for your raspberry pi and possibly make a cable to connect the raspberry pi to the generator controller. If you are comfortable doing these things and you have a backup generator that has a supported controller then this project may be of interest to you.

Functionality

The software supports the following features:

  • Monitoring of the generator to to detect and report the following:
    • Maintenance, Start / Stop and Alarm Logs (No Maintenance log exist on Nexus or Industrial Gens)
    • Display Generator Serial Number
    • Generator Warnings and Faults
    • Generator Status:
      • Engine State
        • Generator Switch State (Auto, On, Off)
        • Generator Engine State (Stopped, Starting, Exercising, Running Manual, Running Utility Loss, Stopped due to Alarm, Cooling Down)
        • Battery Voltage and Charging Status
        • Relay Output State: (Starter, Fuel Relay, Battery Charger, others for liquid cooled models)
        • Engine RPM, Hz and Voltage Output
        • Generator Controller Time
        • Line State
          • Utility Voltage Level
          • Transfer Switch State (Evolution liquid cooled model and Industrial Gens with HTS/MTS/STS Transfer Switches models only)
      • Outage Information
        • Time since last outage
        • Current Utility Voltage
        • Min and Max Utility Voltage since program started
      • Maintenance Information
        • Weekly Exercise time, day (biweekly and monthly if supported by your generator)
        • Hours till next scheduled service
        • Total Run Hours
        • Firmware and Hardware versions
      • Various statics from the generator monitor including time since program launched, MODBUS / serial communications health and program health.
  • Email notification of :
    • Engine state change
    • Switch state change
    • Critical or Warning messages from the generator
  • Web based application for viewing status of the generator
  • Limited and Full Rights login for web interface
  • SMS notifications of Generator state and power outages (via Twilio SMS API or Expansion Cellular Modem)
  • Push notifications (via pushover.net, slack)
  • CallMeBot notifications for whatsapp and telegram
  • syslog logging of generator events
  • Command Line application (all the functionality of email).
  • Ability to set exercise time
  • Ability to set generator time
  • Ability to start, stop, exercise and start / active the transfer switch (i.e. power your house off the generator) remotely.
  • Power, Current output on selected models
  • Fuel consumption on selected models
  • MQTT integration for third party home automation support
  • Service Journal for logging maintenance, repair, etc
  • Backup configuration files
  • Enhanced Exercise options for Evolution/Nexus controllers (Exercise Transfer Switch)
  • Optional low bandwidth URL (http://ipaddress:8000/low)
  • Firmware update notification for Evolution 2.0
  • SNMP monitoring
  • Optional LDAP authentication to web interface

Generator Monitor Web Interface

Support

This project is free to use under the posted license agreement. It was written and is supported by one person with testing and some documentation supported by users of the software. I originally created this project for my personal use however I decided to make the project available to anyone interested, however I do accept tips via paypal:

paypal

Hardware Available for Purchase

While you have the option of purchasing all of the components individually, there is an option for purchasing custom designed hardware that will simplify the hardware assembly process. More info is available here.

Testing

This software was written by one person with full time access to one generator. The primary model used for testing and development is a liquid cooled model with an evolution controller. The software was written with every intention of working on liquid and air-cooled models with the Evolution or Nexus controller however the author has not tested all scenarios. Testing has been performed with both Evolution and Nexus Controllers (air cooled and liquid cooled) with help of the community, however not all firmware versions and models have been tested.

In an effort to expand compatibility and functionality, from time to time I may use the issue tracker of this project to request input from people using the software. This input will will allow greater compatibility and new features to be added.

Placement of your Raspberry Pi

If you have a large generator, the placement of your Raspberry Pi could be important due to EMI. Larger generators can produce more EMI when starting. For example a 48kw diesel generator may generate enough EMI to cause CRC errors when the generator starts if the Raspberry Pi enclosure is close to the engine. If you see CRC errors, check the validity of your cable. The errors may be caused by vibration of loose molex connectors in your cable. Also, if the Raspberry Pi enclosure is moved away from the engine and closer to the controller, this will likely reduce EMI if that is causing any CRC errors. EMI may not be an issue with smaller liquid cooled generators. There are several ways to resolve EMI issues however the best solution is dependent on your particular site needs (generator, how much space you need for your Pi, how much space you have available, etc). The project wiki has information regarding a typical enclosure for the Raspberry Pi, however the example enclosure is not RF shielded.

Connectivity

This application was written to be agnostic of the underlying network media (i.e. WiFi, Ethernet, etc). Testing and development was performed with WiFi. WiFi access points were connected to an uninterruptible power supply (UPS) so connectivity is not lost power is transferred from the utility to the generator.

Note: It is not recommended to expose the web interface used with this project to the internet without serious thought regarding security. If you want to access genmon remotely I would recommend using a VPN (Virtual Private Network) to access your private network. Genmon uses the python Flask library's internal web server to display web pages for this project. This is suitable for low traffic situations however it is not a good idea to expose this interface to the internet unprotected. Protecting from unwanted access using a username and password is available in this project, however there is still risk involved as the Flask web server is not intended for high traffic situations and would likely fail with a Denial of Service attack. Raspberry pi's in general are not hardened by default like most public facing web servers. Exposing any computer to the internet has similar security issues that would need to be considered. There have been instances where hacking has occurred. Exposing genmon directly to the internet is not recommended.

Setting Up Your Raspberry Pi (Serial Port)

Since there are several version of the raspberry Pi out and also several options regarding the operating system, I will leave this section somewhat minimal. I used a Raspberry Pi 3 with Raspbian Lite. There are many resources on the web for setting up a Raspberry Pi so I will only include links for setting up the serial port. The Linux device name of the serial port changed or at least the symbolic link changed starting with the Raspberry Pi 3 from /dev/ttyAMA0 to /dev/serial0 so if you are using the onboard serial port you will want to validate the device name and make sure genmon.conf reflects the serial device name of your Raspberry Pi and Linux distribution. The following two links are helpful in setting up the serial port on the Raspberry Pi:

General Setup of the serial port for a Raspberry Pi

An updated serial port setup instructions based on the Raspberry Pi 3

One important step is to validate your serial port is working properly. You can validate the serial port is working properly by using the program serialtest.py in this repository. To validate your serial port connect the RS-232 transmit to RS-232 receive and follow the instructions in the software section on serialtest.py. Also, you can validate your cable by connecting your cable to your serial port and connecting transmit to receive at the far end of the cable so you will be looping back through your cable, then repeat the serialtest.py test.

Demo videos

Documentation