
* Add documentation for fritzhome Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * change component name and configuration Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * followed review comments Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * another rename Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * remove default from host Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * add documentation for device attributes Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * bump to ha_release 0.65 Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> * ✏️ Some spelling and grammar fixes * ✏️ Grammar and spelling updates * ✏️ Small grammar & spelling changes * ⬆️ ha_release -> 0.68
54 lines
1.3 KiB
Markdown
54 lines
1.3 KiB
Markdown
---
|
|
layout: page
|
|
title: "Fritzbox"
|
|
description: "Instructions on how to integrate the AVM Fritzbox Smart Home components."
|
|
date: 2018-02-18 17:10
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: avm.png
|
|
ha_category: Hub
|
|
ha_release: 0.68
|
|
ha_iot_class: "Local Polling"
|
|
---
|
|
|
|
The [AVM](www.avm.de) Fritzbox component for Home Assistant allows you to integrate the switch and climate devices.
|
|
|
|
#### {% linkable_title Tested Devices %}
|
|
|
|
- [FRITZ!Box 6490 Cable](https://avm.de/produkte/fritzbox/fritzbox-6490-cable/)
|
|
- [FRITZ!DECT 200](https://avm.de/produkte/fritzdect/fritzdect-200/)
|
|
- [Eurotronic Comet DECT](https://www.eurotronic.org/produkte/comet-dect.html)
|
|
|
|
|
|
## {% linkable_title Setup %}
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
fritzbox:
|
|
devices:
|
|
- host: fritz.box
|
|
username: YOUR_USERNAME
|
|
password: YOUR_PASSWORD
|
|
```
|
|
|
|
{% configuration %}
|
|
devices:
|
|
description: A list of Fritzbox devices.
|
|
required: true
|
|
type: map
|
|
keys:
|
|
host:
|
|
description: The hostname or IP address of the Fritzbox.
|
|
required: true
|
|
type: optional
|
|
username:
|
|
description: The username for Smart Home access.
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: The password of the user.
|
|
required: true
|
|
type: string
|
|
{% endconfiguration %}
|