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-fujitsu-airstage

v2.1.0

Published

A Homebridge plugin to control devices that use the Fujitsu Airstage API.

Downloads

61

Readme

homebridge-fujitsu-airstage

A Homebridge plugin to control devices that use the Fujitsu Airstage API.

Prerequisites

Before using this, you should have already installed the Airstage app on your iOS or Android device, signed up for an account, and configured your devices.

Configuration

The easiest way to configure this plugin is to use Homebridge UI.

Here is an example of what you'll see in your Homebridge config once you've installed and configured this plugin:

{
    "platforms": [
        {
            "name": "Airstage Platform",
            "platform": "fujitsu-airstage",
            "region": "us",
            "country": "United States",
            "language": "en",
            "email": "[email protected]",
            "password": "test1234",
            "accessToken": null,
            "accessTokenExpiry": null,
            "refreshToken": null,
            "enableThermostat": true,
            "enableFan": true,
            "enableVerticalAirflowDirection": false,
            "enableDryModeSwitch": false,
            "enableEconomySwitch": false,
            "enableEnergySavingFanSwitch": false,
            "enableFanModeSwitch": false,
            "enableMinimumHeatModeSwitch": false,
            "enablePowerfulSwitch": false
        }
    ]
}

The email and password values should only be set until the initial authentication with the Airstage API has been completed successfully. At that point, they will be set to null, and the accessToken, accessTokenExpiry, and refreshToken values will be set. These values will be used to authenticate with the Airstage API going forward.

Accessories

For each device in your Airstage account, this plugin offers several accessories that you can use in order to control them. You can enable these accessories for your devices in the plugin config.

Thermostat

This accessory allows you to control the temperature, operating mode (cool/heat/auto), and power state (on/off) of your device. This is enabled by default.

Fan

This accessory allows you to control the fan speed, fan mode (auto/manual), oscillation state (on/off), and power state (on/off) of your device. This is enabled by default.

Vertical Airflow Direction

This accessory allows you to control the position of the vertical slats of your device. Unfortunately, Apple Home does currently support the "Slats" service, so this is represented in the plugin using the "Fanv2" service instead.

The fan speed of this accessory represents the position of the vertical slats. If the accessory is off, the vertical slats will oscillate.

"Dry Mode" Switch

This accessory allows you to control the operating mode (dry) of your device.

"Economy" Switch

This accessory allows you to control the "Economy" setting (on/off) of your device.

"Energy Saving Fan" Switch

This accessory allows you to control the "Energy Saving Fan" setting (on/off) of your device.

"Fan Mode" Switch

This accessory allows you to control the operating mode (fan) of your device.

"Minimum Heat Mode" Switch

This accessory allows you to control the operating mode (minimum heat) of your device.

"Powerful" Switch

This accessory allows you to control the "Powerful" setting (on/off) of your device.