mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 07:46:49 +00:00
56 lines
2.1 KiB
Markdown
56 lines
2.1 KiB
Markdown
---
|
|
layout: page
|
|
title: "Transmission support"
|
|
description: "Instructions how to integrate Transmission within Home Assistant."
|
|
date: 2015-04-25 9:06
|
|
sidebar: false
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
<img src='/images/supported_brands/transmission.png' class='brand pull-right' />
|
|
The [Transmission](http://www.transmissionbt.com/) platform allows you to monitor your downloads from within Home Assistant and setup automation based on the information.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
platform: transmission
|
|
host: 192.168.1.26
|
|
port: 9091
|
|
name: Transmission
|
|
username: YOUR_USERNAME
|
|
password: YOUR_PASSWORD
|
|
monitored_variables:
|
|
- 'current_status'
|
|
- 'download_speed'
|
|
- 'upload_speed'
|
|
```
|
|
|
|
Configuration variables:
|
|
|
|
- **host** (*Required*): This is the IP address of your Transmission daemon, e.g. 192.168.1.32.
|
|
- **port** (*Optional*): The port your Transmission daemon uses, defaults to 9091.
|
|
- **name** (*Optional*): The name to use when displaying this Transmission instance.
|
|
- **username** (*Optional*): Your Transmission username, if you use authentication.
|
|
- **password** (*Optional*): Your Transmission password, if you use authentication.
|
|
- **display_variables** array: Conditions to display in the frontend.
|
|
- **current_status**: The status of your Transmission daemon.
|
|
- **download_speed**: The current download speed.
|
|
- **upload_speed**: The current upload speed.
|
|
|
|
|
|
To use the monitoring, your transmission client needs to allow remote access. If you are running the graphical transmission client (transmission-gtk) go to **Edit** -> **Perferences** and choose the tab **Remote**. Check **Allow remote access**, enter your username and your password, and uncheck the network restriction as needed.
|
|
|
|
<p class='img'>
|
|
<img src='{{site_root}}/images/screenshots/transmission_perf.png' />
|
|
</p>
|
|
|
|
If everthing is setup correctly, the details will show up in the frontend.
|
|
|
|
<p class='img'>
|
|
<img src='{{site_root}}/images/screenshots/transmission.png' />
|
|
</p>
|
|
|
|
[James Cole](https://github.com/jamespcole) has contributed the transmission platform.
|