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

v1.0.2

Published

With this plugin you can connect your Olisto services to homebridge

Downloads

4

Readme

homebridge-olisto

homebridge-olisto: Downloads homebridge-olisto: Version

What is homebridge-olisto

With homebridge-olisto you can use all your Olisto services in homekit. In homekit you have a button, if you press that button it wil connect to the Olisto server and run your action!

How to install

First if you haven't installed homebridge yet install it by using the command:

npm install -g homebridge

Then install this plugin by using the command:

npm install -g homebridge-olisto

Now you're done with installing. Now we want to setup the Olisto app!

How to set up Olisto

First go to olisto.com/connect/ log in and choose a username. Once thats done create a new connector. You can call it whatever you want. Now you should get an e-mail on the e-mail adress you're registered at Olisto. Keep this e-mail in your mailbox.

Push buttons

Open up your olisto app on your phone/tablet. Then add a new trigg. Choose the when condition and select Olisto Connect. Now select the connector you have just added, press 'connector turned on'. Then in the Then action you can choose what you want to happen when you press the button. Then click save trigg and name it whatever you want!

Switches and Outlets

Open up your olisto app on your phone/tablet. Then add two new triggs. In the when condition and select Olisto Connect. Now select the connector you have just added, press 'connector has value'. In the first trigg you select 'equal to' and type in '1', in the second trigg you do the same but now type '0' instead of '1'. Then in the Then action of your first trigg you can choose what you want to turn on when you activate the button. And in the second one you turn it off. Then click save trigg and name it whatever you want!

How to set up Homebridge

This is the sample config.json for homebridge.

"platforms": [
    {
        "platform": "Olisto",
        "triggs": [
            {
                "name": "Sample push",
                "type": "push",
                "connecturl": "YOUR UNIQUE CONNECT URL"
            },
            {
                "name": "Sample switch",
                "type": "switch",
                "connecturl": "YOUR UNIQUE CONNECT URL"
            },
            {
                "name": "Sample outlet",
                "type": "outlet",
                "connecturl": "YOUR UNIQUE CONNECT URL"
            }
        ]
    }
]
  • platform: Must always be Olisto.
  • triggs: A dictionary of all the triggs you want in homekit
  • triggs/name: The name that you want the button to have in homekit.
  • triggs/type: The your button needs to be either push, switch or outlet.
  • triggs/connecturl: This is the Connect URL you received from Olisto.