Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haywirecoder/homebridge-batterytender
Homebrdige Module for Deltran Battery Monitor Tender
https://github.com/haywirecoder/homebridge-batterytender
battery battery-monitor battery-tender deltran homebridge homebridge-plugin tender
Last synced: 6 days ago
JSON representation
Homebrdige Module for Deltran Battery Monitor Tender
- Host: GitHub
- URL: https://github.com/haywirecoder/homebridge-batterytender
- Owner: haywirecoder
- License: apache-2.0
- Created: 2021-12-04T17:08:18.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-15T04:01:42.000Z (about 2 years ago)
- Last Synced: 2024-12-15T11:08:06.855Z (about 1 month ago)
- Topics: battery, battery-monitor, battery-tender, deltran, homebridge, homebridge-plugin, tender
- Language: JavaScript
- Homepage:
- Size: 114 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![NPM Version](https://img.shields.io/npm/v/homebridge-batterytender.svg?style=flat-square)](https://www.npmjs.com/package/homebridge-batterytender)
[![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
# 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
| Attributes | Description |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------ |
| Email | Email associated with Battery Tender. This is a required value. |
| password | Battery Tender password. This is a required value. |
| deviceRefresh | Polling interval to obtain status of Flo devices, provide in hours. Default to each hour. |
| batteryWarning | Battery Tender level to indicated when battery warning icon level is display in HomeKit. Default to 30, this is an optional value.
| switchAutoOn| The 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. |
| switchStateReverse | Reverse 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.
| excludedDevices | Devices to suppress from HomeKit. This is an optional value. | |Example configuration is below.
```javascript
..."platforms": [
{
"name": "BatteryTender",
"auth": {
"email": "",
"password": ""
},
"deviceRefresh": 1,
"batteryWarning": 30,
"switchAutoOn": "11.99",
"switchStateReverse": false,
"platform": "BatteryTender"
}
...