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

@combine-enterprises/homebridge-sensibo-sky

v0.4.5

Published

HomeBridge plugin for Sensibo Sky

Downloads

6

Readme

homebridge-sensibo-sky

Homebridge platform plugin for the Sensibo Sky

Installation

  1. Install homebridge using: npm install -g homebridge
  2. Install this plugin using: npm install -g @combine-enterprises/homebridge-sensibo-sky
  3. Update your configuration file. See sample config.json snippet below.

Configuration

Configuration sample:

Full configuration

"platforms": [
   	{
   		"platform": "SensiboSky",
   		"name": "Sensibo",
   		"apiKey": "YOUR_SENSIBO_API_ID",
   		"timeLapse": 5,
   		"ai": true,
   		"hideFan": false, 
   		"hideHumidity": true,
   		"fixedState" : "auto"
   	}
   ],

Simple configuration

"platforms": [
		{
			"platform": "SensiboSky",
			"name": "Sensibo",
			"apiKey": "YOUR_SENSIBO_API_ID"
		}
	],

Fields:

  • "platform": Must always be "SensiboSky" (required)
  • "name": Can be anything (required)
  • "apiKey": Sensibo API key, must be obtained from https://home.sensibo.com/me/api (required)
  • "timeLapse": Time in seconds to recycle the status from Sensibo. Too frequent will result in many timeout from sensibo server. Default is 30s. (Optional)
  • "ai": true or false. In BETA and only works for cooling. This will set the fan speed automatically to achieve the target temperature asap. This will also hide the fan since it is no longer manually controlled. If there is demands, I can work on heating too. Default is turnoff (false). (Optional)
  • "hideFan": true or false. When set to true, the fan will be fixed at high provided ai is false. The Fan control is also hidden. Default is false.
  • "hideHumidity": true or false. True would move the humidity info into thermostat detail. Default is false. (Optional)
  • "fixedState": "cool"|"heat"|"manual"|auto". Fixed the heating/cooling state of the aircon. If set to "manual", to be set with Homeapp manually. Default is "auto" where cool/heat decided if the target temp is lower or higher than current

Usage Notes

  • This module modified from the original Sensibo and adopted for Sensibo Sky to improve the stability due to the constant ERRCONNECT from Sensibo server when there is too many request. Staggered update for each 0.5s each from timeLapse.

  • The refresh is now splitted to the individual pods instead of all at one go to mininize error from the sensibo server.

  • Had also resolved bugs on the fan and better error handling when Sensibo server does not respond.

  • A fan speed of 0 means "auto". Otherwise it makes a logical progression from low, medium, medium_high to high.

  • Most code adopted from pdlove. Credits goes to original author pdlove