mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-17 00:18:58 +00:00
42 lines
1.1 KiB
Markdown
42 lines
1.1 KiB
Markdown
---
|
|
layout: page
|
|
title: "Shiftr.io"
|
|
description: "Transfer events to Shiftr.io."
|
|
date: 2017-06-16 07:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: shiftr.png
|
|
ha_category: "History"
|
|
featured: false
|
|
ha_release: 0.48
|
|
---
|
|
|
|
The `shiftr` component makes it possible to transfer details collected with Home Assistant to [Shiftr.io](https://shiftr.io) and visualize the flow of the information. Keep in mind that your details will be public!
|
|
|
|
## {% linkable_title Configuration %}
|
|
|
|
Create a new [namespace](https://shiftr.io/new) and generate a new token. You will need to use `Key (Username)` and `Secret (Password)` to setup the component.
|
|
|
|
To use the `shiftr` component in your installation, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
shiftr:
|
|
username: YOUR_NAMESPACE_USERNAME
|
|
password: YOUR_NAMESPACE_PASSWORD
|
|
```
|
|
|
|
{% configuration %}
|
|
username:
|
|
description: Username for the Shiftr namespace.
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: Password for the Shiftr namespace.
|
|
required: true
|
|
type: string
|
|
{% endconfiguration %}
|
|
|