mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-07 11:38:58 +00:00
1.4 KiB
1.4 KiB
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class |
---|---|---|---|---|---|---|---|---|---|---|---|
page | Deluge Sensor | Instructions on how to integrate Deluge sensors within Home Assistant. | 2017-10-24 17:06 | true | false | true | true | deluge.png | Downloading | 0.57 | Local Polling |
The deluge
platform allows you to monitor your downloads with Deluge from within Home Assistant and setup automation based on the information.
To enable this sensor, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
sensor:
- platform: deluge
host: IP_ADDRESS
username: USERNAME
password: PASSWORD
monitored_variables:
- 'current_status'
- 'download_speed'
- 'upload_speed'
Configuration variables:
- host (Required): This is the IP address of your Deluge daemon, eg. 192.168.1.32.
- port (Optional): The port your Deluge daemon uses. Defaults to 58846. Warning, this is not the port of the WebUI.
- name (Optional): The name to use when displaying this Deluge instance.
- username (Required): Your Deluge daemon username.
- password (Required): Your Deluge daemon password.
- monitored_variables array (Required): Conditions to display in the frontend.
- current_status: The status of your Deluge daemon.
- download_speed: The current download speed.
- upload_speed: The current upload speed.