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-xs1

v0.0.8

Published

Homebridge plugin for EZcontrol XS1

Downloads

4

Readme

homebridge-xs1

Plugin for homebridge. It provides access to actuators and sensors attached to a EZcontrol XS1. It will identify all supported devices of your XS1 and make them available via homebridge/homekit.

Supported devices

Actuator types:

  • Switch
  • Light
  • Dimmer
  • Shutter

Sensor types:

  • Temperature
  • Hygrometer
  • Air quality

Installation

npm install -g homebridge-xs1

Configuration

Example

"platforms": [
        {
            "platform": "xs1",
            "name" : "Gateway",
            "host" : "192.168.1.3",
            "password" : "",
            "options": [
                { "xs1_name" : "light_tv", "new_name" : "Light TV room", "type" : "light" },
                { "xs1_name" : "shutter_living_room", "new_name" : "Living room shutter" },
                { "xs1_name" : "garage_door", "new_name" : "Garage door", "type" : "switch" },
                { "xs1_name" : "airquality_tv", "new_name" : "Air quality TV room", "mode" : "quality" },
                { "xs1_name" : "garden_pump", "type" : "disabled" }
            ]
        }
    ]

}

Explanation

  • platform: Has to be xs1
  • name: Friendly name for your XS1 device
  • host: Host address of your XS1 device
  • password: Password for xs1 access, if configured. Leave empty if no authentication is needed
  • options Contains optional settings to override settings stored in your XS1:
    • xs1_name: Name of xs1 device identifying the device to override, mandatory
    • new_name: Name that homebridge should use for the identified device
    • type: Sets the type of the device, supported values:
      • switch: Sets actuator type to switch
      • light: Sets actuator type to light
      • dimmer: Sets actuator type to dimmer
      • shutter: Sets actuator type to shutter
      • temperature: Sets sensor type to temperature
      • hygrometer: Sets sensor type to hygrometer
      • air_quality: Sets sensor type to air_quality
      • disabled: Disables device; won't show up with homebridge
    • mode: Only supported for sensor type air_quality:
      • quality: Will register a single sensor with type air quality
      • ppm: Will register a single sensor with type CO2 level
      • both: Will register both sensor types as listed above

Notes

  • Tested with XS1 firmware 4.0.0.5326
  • Actuator shutter supports full up and down only
  • Sensor air_quality is to be used with ppm value

Kudos

Release notes

  • 0.0.1 (12-NOV-2016): Initial release
  • 0.0.2 (12-NOV-2016): Updated documentation
  • 0.0.3 (12-NOV-2016): Updated documentation
  • 0.0.4 (19-NOV-2016): Updated documentation + package.json
  • 0.0.5 (20-NOV-2016): Added support for xs1 password authentication
  • 0.0.6 (25-NOV-2016): Added support for sensors temperature, hygrometer and air_quality
  • 0.0.7 (27-NOV-2016): Added option mode for air_quality sensor
  • 0.0.8 (29-NOV-2016): Fix for temperature values < 0

Todos

  • Implement further actuator / sensor support