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-freeathome-local

v3.0.5

Published

Platform Plugin to manage free@home accessories via HomeBridge using local API

Downloads

31

Readme

homebridge-freeathome-local

Homebridge platform plugin for free@home SmartHome devices.

npm npm GitHub issues GitHub pull requests

HomeKit UI

IMPORTANT: From v3.0.6 the Cloud API will not be supportet anymore! The cloud based code will be removed in a future release.

IMPORTANT: If you upgrade from < 2.0.0 please read the Upgrade Notes carefully before installing this plugin.

Features

  • Running on a local REST API
  • Control your Busch-Jäger Lights, Outlets, Blinds and more with Apple devices with Homekit
  • Setup automations with the HomeKit UI
  • Ask Siri to control your devices
  • Automatic reconnect to the SysAP

Supported accessories

  • Binary Sensors
  • Outlets
  • Lights
  • Dimmable Lights
  • Thermostats
  • Door Locks
  • Media Players (Sonos)
  • Smoke Sensors
  • Blinds / Shutters
  • Window Contact Sensors
  • Motion Sensors

Custom Actuators

  • A switch actuator can be exposed as a (video) DoorBell.
  • A switch actuator can be exposed as a Garage Door.

Requirements

  • free@home Access Point
  • A linux-based server on your home network that runs 24/7 like a Raspberry Pi.

Setup / Installation

  1. Install Homebridge
  2. npm install homebridge-freeathome
  3. Edit config.json and configure platform. See Configuration section.
  4. Start Homebridge
  5. Star the repository ;)

Configuration

You can configure the plugin in Homebridge Config UI X now: HomeKit UI Caveats: the mapping for blacklisted actuators doesn't work yet, since Homebridge Config UI X demands a different json structure.

Of course you can configure the Plugin still raw in the config.json:

{
    "platform": "free@home",
    "sysIP": "<IP>",
    "username": "<USERNAME>",
    "password": "<PASSWORD>",
    "isLocalAPI": <true|false>,
    "dimmActorMinValue": <0|100>,
    "mappings": {}
}

Replace <IP> with the IP of your System Access Point.

You can configure the mappings if you want to ignore an actuator or channel if they are not connected/unused to hide them from the HomeKit UI. However this is only needed in rare cases. Usually you can leave this blank.

{
    "platform": "free@home",
    "sysIP": "<IP>",
    "username": "<USERNAME>",
    "password": "<PASSWORD>",
    "isLocalAPI": <true|false>,
    "dimmActorMinValue": <0|100>,
    "mappings": {
        "<ACTUATOR-SERIAL>": {
            "blacklist": ["ch0000", "ch0001"],
        },
        "<ACTUATOR-SERIAL>": {
            "blacklist": ["*"],
        }
    }
}

You can find the actuator serial in the web interface of the free@home SysAp Interface.

Local REST API

You need to activate local API settings in the SysAP settings of the free@home next App: https://developer.eu.mybuildings.abb.com/fah_local/prerequisites/

This feature is NOT available in the web backend!

User/Password will be the same as for the Cloud API, the user "installer" seems to be the most reliable.

In your config.json you need to set "isLocalAPI": true,

That's it, good luck keeping your data at home!

(Video) DoorBell

See the DoorBell Tutorial on how to setup the free@home DoorBell in HomeKit.

Garage Door

See the GarageDoor Tutorial on how to expose a Switch actuator as a GarageDoor accessory.

Limitations

  • ~~The door can not be controlled with HomeKit as the bus is not connected to the SysAp.~~ Already implemented via free@HomeTouch 7 Panel
  • The door camera can not be accessed. You may want to use IP cameras that support the rtsp protocol and use the video door bell.

Notes

  • The accessories can only be controlled when you're at home in your local WiFi network. To manage your accessories remotely you need to setup an iPad/Homepod or Apple TV as a Home Hub.

Tips & Tricks

  • Do not restart Homebridge if you are either updating the SysAp or an actuator as the accessory may be removed from HomeKit if it is not detected during discovery.

Changelog

The changelog can be viewed here.

Upgrade Notes

Upgrade Notes can be found in the CHANGELOG.

Help

If you have any questions or help please open an issue on the GitHub project page.

Contributing

Pull requests are always welcome. If you have a device that is not supported yet please open an issue or open a pull request with your modifications.

License

The project is subject to the MIT license unless otherwise noted. A copy can be found in the root directory of the project LICENSE.