mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-31 15:26:49 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
57 lines
1.6 KiB
Markdown
57 lines
1.6 KiB
Markdown
---
|
|
layout: page
|
|
title: "Deutsche Bahn"
|
|
description: "Instructions on how to integrate timetable data for traveling in Germany within Home Assistant."
|
|
date: 2015-06-02 21:45
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
ha_category: Transport
|
|
logo: db.png
|
|
ha_iot_class: "Cloud Polling"
|
|
ha_release: 0.14
|
|
---
|
|
|
|
|
|
The `deutsche_bahn` sensor will give you the departure time of the next train for the given connection. In case of a delay, the delay is also shown. Additional details are used to inform about eg. the type of the train, price, and if it is on time.
|
|
|
|
To enable this sensor, add the following lines to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
- platform: deutsche_bahn
|
|
from: NAME_OF_START_STATION
|
|
to: NAME_OF_FINAL_STATION
|
|
```
|
|
{% configuration %}
|
|
from:
|
|
description: The name of the start station.
|
|
required: true
|
|
type: string
|
|
to:
|
|
description: The name of the end/destination station.
|
|
required: true
|
|
type: string
|
|
only_direct:
|
|
description: Only show direct connections.
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
{% endconfiguration %}
|
|
|
|
This sensor stores a lot of attributes which can be accessed by other sensors eg. a [template sensor](/components/sensor.template/).
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
platform: template
|
|
sensors:
|
|
next_departure:
|
|
value_template: '{% raw %}{{ states.sensor.munich_to_ulm.attributes.next }}{% endraw %}'
|
|
friendly_name: 'Next departure'
|
|
```
|
|
|
|
The data is coming from the [bahn.de](http://www.bahn.de/p/view/index.shtml) website.
|