npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-fritz-eve

v0.7.8

Published

Homebridge platform plugin for Fritz!Box

Downloads

19

Readme

homebridge-fritz

NPM Version NPM Downloads Build status Donate

Homebridge platform plugin for FRITZ!Box.

This plugin exposes:

  • WLAN guest access switch
  • Fritz!DECT outlets (200, 210)
  • Fritz!Powerline outlets (510, 540)
  • Fritz!DECT (300) and Comet!DECT thermostats
  • Fritz!DECT repeaters as temperature sensor (100)
  • Window sensors including HAN FUN devices e.g. of Deutsche Telekom

Installation

Follow the homebridge installation instructions at homebridge.

Install this plugin globally:

npm install -g homebridge-fritz

Add platform to config.json, for configuration see below.

Configuration

{
  "platforms": [
    {
      "platform": "Fritz!Box",
      "name": "My FritzBox",
      "username": "<username>",
      "password": "<password>",
      "url": "http://fritz.box",
      "interval": 60,
      "hide": ["wifi", "<ain>"],
      "concurrent": false,
      "wifiName": "Guest WLAN",
      "options": {
        "strictSSL": false
      }
    }
  ]
}

The following settings are optional:

  • url: Fritz!Box address
  • interval: polling interval for updating accessories if state was changed outside homebringe
  • hide: a list of device AINs to exclude from homebridge control
  • concurrent: allow concurrent api requests for newer Fritz!BOXes with better performance (experimental)
  • wifiName: custom name for the WLAN guest access switch (fallback Guest WLAN)

The hide config options allows to specify an array of device AINs that will not be added to homebridge. Use wifi for hiding the WLAN guest access switch.

Common Issues / Frequently Asked Questions

  1. homebridge-fritz can't login to the FritzBox

    Some users have reported that logging into the FritzBox internally via https fails. This seems to be caused by the FritzApp occupying the same port. In this case you can connect internally via http or use the external IP.

    Fritz!Box platform login failed messages can be caused by invalid login data or wrong url.

    Log messages if the form of:

     { error: { [Error: self signed certificate] code: 'DEPTH_ZERO_SELF_SIGNED_CERT' }

    indicate that there are SSL security problems- most likely due to self-signed certificates. Use the "strictSSL": false option to disable the respective check.

  2. homebridge-fritz is not able to update my thermostat

    Current FritzBox firmwares seem to ignore API updates when the thermostat has been key-locked. No workaround available- please contact AVM to change this behaviour or don't use the locking mechanism.

  3. homebridge-fritz can login but not update thermostat battery charge

    Battery charge is not an API function. That means that the user must have access to FritzBox administration, not only to the SmartHome API in order to use this functionality. Update your Fritz!Box user accordingly.

Debugging

If you experience problems with this plugin please provide a homebridge logfile by running homebridge with debugging enabled:

homebridge -D

For even more detailed logs set "debug": true in the platform configuration.

Acknowledgements

  • homebridge-fritz is based on the fritzapi library
  • Original non-working fritz accessory https://github.com/tommasomarchionni/homebridge-FRITZBox
  • Platform implementation inspired by https://github.com/rudders/homebridge-platform-wemo.