0.3.0 • Published 2 years ago

homebridge-http-humidity v0.3.0

Weekly downloads
3
License
ISC
Repository
github
Last release
2 years ago

homebridge-http-humidity

Supports http/https devices on HomeBridge Platform. This version only supports humidity sensors returning a JSON with the data or the raw data.

This plug-in acts as an interface between a web endpoint and homebridge only. You will still need some dedicated hardware to expose the web endpoints with the humidity information. In my case, I used an Arduino board with Wifi capabilities.

Installation

  1. Install homebridge using: npm install -g homebridge
  2. Install this plugin using: npm install -g homebridge-http-humidity
  3. Update your configuration file. See sample-config.json in this repository for a sample.

Configuration

The available fields in the config.json file are:

  • url Mandatory Endpoint URL.
  • name Mandatory Accessory name.
  • http_method Optional HTTP method used to get the humidity (Default: GET)
  • manufacturer Optional Additional information for the accessory.
  • model Optional Additional information for the accessory.
  • serial Optional Additional information for the accessory.
  • field_name Optional Field that will be used from the JSON response of the endpoint. Alternatively, if the field_name contains an empty string ("field_name": ""), the expected response is directly the current humidity value (Default: humidity).
  • timeout Optional Waiting time for the endpoint response before fail (Default: 5000ms).
  • auth Optional JSON with user and pass fields used to authenticate the request into the device.
  • update_interval Optional If not zero, the field defines the polling period in milliseconds for the sensor state (Default is 120000ms). When the value is zero, the state is only updated when homebridge requests the current value.
  • debug Optional Enable/disable debug logs (Default: false).

Example:

"accessories": [
    {
        "accessory": "HttpHumidity",
        "name": "Outside Humidity",
        "url": "http://192.168.1.210/humidity?format=json",
        "http_method": "GET",
        "field_name": "humidity",
        "auth": {
            "user": "test",
            "pass": "1234"
        }
    }
]

The defined endpoint will return a json looking like this:

{
	"humidity": 38
}

This plugin acts as an interface between a web endpoint and homebridge only. You will still need some dedicated hardware to expose the web endpoints with the relative humidity information. In my case, I used an Arduino board with Wifi capabilities.

0.3.0

2 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.2

8 years ago

0.0.1

8 years ago