Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

homebridge-platform-pdu

ecoen6628ISC0.1.10TypeScript support: included

A Homebridge plugin for Raritan and APC PDUs.

homebridge-plugin, Raritan, APC, PDU

readme

homebridge-platform-pdu

Homebridge dynamic Platform Plugin for Raritan and APC PDUs

A Raritan PX-5475 and APC AP7931 PDU plugin for Homebridge. This creates one or more PDU accessories, each with multiple outlet services and a light meter service to report on current utilization in Watts.

This code is heavily based on the work of invliD's homebridge-digipower-pdu accessory.

Installation

Run these commands:

% sudo npm install -g homebridge
% sudo npm install -g homebridge-platform-raritanpdu

NB: If you install homebridge like this:

sudo npm install -g --unsafe-perm homebridge

Then all subsequent installations must be like this:

sudo npm install -g --unsafe-perm homebridge-platform-raritanpdu

Configuration

Example platform config (needs to be added to the homebridge config.json): ...

    "platforms": [
    {
        "name": "LAB Platform PDU",
        "debug": false;
        "pdus": [
            {
                "ipAddress": "192.168.1.70",
                "snmpCommunity": "private"
            },
            {
                "ipAddress": "192.168.1.75",
                "snmpCommunity": "private"
            }

        ],
        "platform": "Platform PDU"
    }
      ]

...

Config Explanation:

Field Description
platform (required) Must always be "Platform PDU".
name (required) A name for HomeBridge to use to reference the platform.
ip_address (required) The internal ip address of your PDU.
snmp_community (required) The Write community string for your PDU.
debug (optional) Enables additional logging from the platform for troubleshooting.

Supported Agents

The only tested Raritan PDU model for this plugin is the one that I have in my lab, the PX-5475, but others should work. The only tested APC PDU model for this plugin is the one that I have in my lab, the AP7931. This is accomplished using the PX-PDU-MIB & APC PowerNet MIB v4.0.4.

The outlet count is grabbed from the PDU using SNMP, as are the Model, FirmwareRevision, SerialNumber & SNMP system name (used as a DisplayName).

changelog

Changelog

All notable changes to this project will be documented in this file.

0.1.10 (2023-11-10)

Changes

  • Updated Node version

0.1.9 (2023-11-10)

Changes

  • Updated dependencies

0.1.8 (2021-11-08)

Changes

  • Update homebridge after toggle.

0.1.7 (2021-11-08)

Changes

  • Code cleanup

0.1.6 (2021-11-08)

Changes

  • Fixed state polling

0.1.5 (2021-11-08)

Changes

  • Changed to poll on an interval

0.1.4 (2021-10-19)

Changes

  • Updated dependencies

0.1.3 (2021-10-05)

Changes

  • Updated dependencies

0.1.2 (2021-02-26)

Changes

  • Added config boolean sto config.schema

0.1.1 (2021-02-26)

Changes

  • Added config boolean setting for debug output

0.1.0 (2021-02-24)

Changes

  • Adjusted reporting of 0 Watts of power draw to 0.0001 LUX per Homebridge 1.3.

0.0.9 (2020-12-21)

Changes

  • Minimized logging unless in homebridge debug mode.
  • Disabled the plugin if there is no config for it.
  • Updated dependency on net-snmp to allow for recent version.

0.0.8 (2020-05-15)

Changes

  • Updated Readme.

0.0.7 (2020-05-14)

Changes

  • Re-published to npm.

0.0.6 (2020-05-13)

Changes

  • Added keywords for HomeBridge search.

0.0.3 (2020-05-13)

Changes

  • Added support for APC PDU.