Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Fritz AHA Binding

robbyb67 edited this page Nov 24, 2014 · 7 revisions

Documentation of the Fritz AHA binding Bundle
Fritz AHA

Introduction

This binding provides access to AVM Home Automation devices, such as the Fritz!DECT 200 connected to a Fritz!Box or the Fritz!Powerline 546E. It is designed to allow for multiple hosts, for instance using both a Fritz!Box and a Fritz!Powerline.

The binding interfaces with hosts using a choice of two different interfaces, the query script used in the Fritz!OS UI and a webservice designed for interfacing with external applications.

Binding Configuration

The Fritz AHA Binding supports multiple hosts. Each host must be assigned a Host ID in the openhab.cfg. Furthermore, connection data must be provided. For a standard Fritz!Box home gateway setup, the default settings are sufficient and only a password needs to be supplied.

To take advantage of SSL encryption, you need to add the SSL certificate to your Java keystore.

Example openhab.cfg entry

############################# Fritz AHA Binding #######################################
#
# refresh interval in milliseconds (optional, defaults to 10000)
#fritzaha:refresh=

# Binding supports multiple AHA hosts (e.g. FRITZ!Box, Fritz!Powerline 546E). Format is
# fritzaha:<hostID>.<option>=<value>, where hostID is up to user choice

fritzaha:fritzbox.host=fritz.box
fritzaha:fritzbox.port=80
fritzaha:fritzbox.protocol=http
fritzaha:fritzbox.password=topsecret

Generic Item Binding Configuration

Webservice Binding Configuration

The preferred way for external applications to interface with AVM home automation devices is a webservice available since Fritz!OS 5.53. It provides an interface with comparatively low latency for switching and power/energy metering. Voltage and current measurements are not available and the refresh interval is slower than that of the Fritz!OS web interface (unless the web interface is accessed simultaneously, e.g. using the query script support of the binding or a browser).

Using the webservice, items are accessed using their AIN/MAC address, which is written on the back of the device. The space in Fritz!DECT AINs is not necessary, the colons in Fritz!Powerline MAC addresses are. If a MAC addressed is used as an AIN, commas must be used as seperators to prevent ambiguity from the use of colons in the MAC address.

Switches

Switches can be addressed by simply specifying the host and the device:

fritzaha="<hostID>,<ain>"

where <hostID> is the ID assigned in the openhab.cfg file and <ain> is the actor ID number as listed on the device.

For example:

fritzaha="fritzbox,012345678910"
fritzaha="fritzpowerline,01:23:45:67:89:AB"

describe the switch on a Fritz!DECT device with AIN 01234 5678910 connected to the host "fritzbox" and the switch on the Fritz!Powerline device with MAC address 01:23:45:67:89:AB and host ID "fritzpowerline".

Power/Energy Meters

Meters for current voltage, current and power are available as number items. The syntax is

fritzaha="<hostID>,<ain>,<meterType>"

where <hostID> is the ID assigned in the openhab.cfg file, <ain> is the actor ID number as listed on the device and <meterType> is the type of meter (either power or energy).

Example:

fritzaha="fritzbox,012345678910,power"
fritzaha="fritzpowerline,01:23:45:67:89:AB,energy"

New since 1.6.0: Temperature sensor

Temperature is available as a new meter type to number items.

Example:

fritzaha="fritzbox,012345678910,temperature"

Query Script Binding Configuration

The Query script is part of the Fritz!OS UI and provides lots of information at fast refresh intervals. However, it is not intended for use with external applications and occupies the host for a long time (often more than a second per request), making it ill-suited for large amounts parallel requests. Furthermore, energy consumption is only available pre-formatted for Fritz!OS use and therefore not supported.

Using the query script, items are accessed using their internal ID, which can be obtained from the URLs used in the Fritz!OS UI. They are much shorter than AINs, allowing the binding to automatically identify them as such.

Switches

Switches can be addressed by simply specifying the host and the device:

fritzaha="<hostID>,<deviceID>"

where <hostID> is the ID assigned in the openhab.cfg file and <deviceID> is the internal ID number of the device as assigned by the host.

For example:

fritzaha="fritzbox,16"
fritzaha="fritzpowerline,1000"

describes the switch on a Fritz!DECT device with internal ID 16 connected to the host "fritzbox" and the switch on a Fritz!Powerline device with host ID fritzpowerline and internal ID 1000.

Voltage/Current/Power Meters

Meters for current voltage, current and power are available as number items. The syntax is

fritzaha="<hostID>,<deviceID>,<meterType>"

where <hostID> is the ID assigned in the openhab.cfg file, <deviceID> is the internal ID number of the device as assigned by the host and <meterType> is the type of meter (either voltage, current or power).

Example:

fritzaha="fritzpowerline,1000,voltage"
fritzaha="fritzbox,16,power"

Installation


User Interfaces


Community

(link to openHAB forum)

Development



Misc


Samples

A good source of inspiration and tips from users gathered over the years. Be aware that things may have changed since they were written and some examples might not work correctly.

Please update the wiki if you do come across any out of date information.

Use case examples

Collections of Rules on a single page

Single Rules

Scripts


Release Notes

Clone this wiki locally