1.0.2 • Published 1 year ago

homebridge-batterytender v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

NPM Version verified-by-homebridge

Homebridge Plug-In for Deltran Battery Monitor Tender

A Homebridge plug-in to integrate the Deltran Battery Monitor Tender (https://www.batterytender.com/battery-tender-wireless-battery-monitor_2) into Homebridge. This module exposed monitor as an outlet. With outlet changing state to indicate voltage drop level and battery indicator for percentage of charge. This module also uses Eve Home volt attribute to report voltage.

Limitation:

  • This module has only been tested with Deltran Battery Tender® Wireless Battery Monitor.
  • The Battery Tender Monitor only checks-in a few time a day. This not realtime monitor, rather gives the user insight to current charge level of battery level in Homekit.

Configuration options

AttributesDescription
EmailEmail associated with Battery Tender. This is a required value.
passwordBattery Tender password. This is a required value.
deviceRefreshPolling interval to obtain status of Flo devices, provide in hours. Default to each hour.
batteryWarningBattery Tender level to indicated when battery warning icon level is display in HomeKit. Default to 30, this is an optional value.
switchAutoOnThe outlet will automated turn-on to indicate the monitored battery has drop and need to be charge. Default to 11.99 volts, this is an optional value.
switchStateReverseReverse the outlet on and off state. The setting will result On when battery is above monitor voltage state and Off when the value drop below voltage. Default to false, this is an optional value.
excludedDevicesDevices to suppress from HomeKit. This is an optional value.

Example configuration is below.

...

"platforms": [
{
  "name": "BatteryTender",
  "auth": {
    "email": "<email address>",
    "password": "<password>"
  },
  "deviceRefresh": 1,
  "batteryWarning": 30,
  "switchAutoOn": "11.99",
  "switchStateReverse": false,
  "platform": "BatteryTender"
}
...