
* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
1.3 KiB
title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title | description | logo | ha_category | ha_release | ha_iot_class | redirect_from | ||
---|---|---|---|---|---|---|---|---|
qBittorrent Sensor | Instructions on how to integrate qBittorrent sensors within Home Assistant. | qbittorrent.png |
|
0.84 | Local Polling |
|
The qbittorrent
platform allows you to monitor your downloads with qBittorrent from within Home Assistant and setup automations based on the information.
Setup
This sensor requires the qBittorrent Web UI enabled. The official reference describes how to set up the Web UI.
Configuration
To enable this sensor, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
sensor:
- platform: qbittorrent
url: 'http://<hostname>:<port>'
username: YOUR_USERNAME
password: YOUR_PASSWORD
{% configuration %} url: description: The URL of the Web UI of qBittorrent. required: true type: string name: description: The name to use when displaying this qBittorrent instance. required: false type: string username: description: The username of the Web UI of qBittorrent. required: true type: string password: description: The password of the Web UI of qBittorrent. required: true type: string {% endconfiguration %}