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-philips-air

v3.5.2

Published

Homebridge Plugin for Philips Air Purifiers

Downloads

130

Readme

homebridge-philips-air

npm npm verified-by-homebridge

Homeridge Plugin for Philips Air Purifiers

🔴 Foreword 🔴

This plugin is now using py-air-control directly to enable support for newer Philips connected air purifier models.

🟡 Installation 🟡

  1. Install Homebridge using the official instructions.
  2. Install this plugin using sudo npm install -g homebridge-philips-air --unsafe-perm.
  3. Run command in your console sudo chmod -R 777 /usr/lib/node_modules/homebridge-philips-air/sensor.
  4. Update your configuration file. See configuration sample below.

If you're using HTTP protocol:

  1. Install pip and git using sudo apt install python3-pip git.
  2. Install py-air-control using sudo pip3 install py-air-control.

If you're using CoAP protocol:

  1. Install pip and git using sudo apt install python3-pip git.

  2. Install py-air-control using sudo pip3 install py-air-control.

  3. Update CoAPthon3 using sudo pip3 install -U git+https://github.com/Tanganelli/CoAPthon3@89d5173.

    For new firmware version (Who get error Unexpected error:'NoneType' object has no attribute "payload")

    1. Found coap_client.py path using sudo find / -name *coap_client.py.
    2. Open file coap_client.py and line 91 change timeout from 5 to 60, line 145 from 5 to 60 and line 174 and timeout=60 after encrypted_payload
    3. Change in plugin settings Timeout Seconds to 30 or 60.

If you're using Plain CoAP protocol:

  1. Install pip and git using sudo apt install python3-pip git.
  2. Install py-air-control using sudo pip3 install py-air-control.
  3. Update CoAPthon3 using sudo pip3 install -U git+https://github.com/Tanganelli/CoAPthon3@89d5173.
  4. Allow non-root to send pings using echo "net.ipv4.ping_group_range=0 1000" | sudo tee -a /etc/sysctl.conf.
  5. Update running sysctl configuration using sudo sysctl -p.

🟢 Configuration 🟢

Edit your config.json accordingly. Configuration sample:

"platforms": [{
    "platform": "philipsAir",
    "devices": [{
        "name": "Living Room Purifier",
        "ip": "10.0.1.16",
        "protocol": "http"
    }]
}]

| Fields | Description | Required | |--------------------|------------------------------------------------------------------------------|----------| | platform | Must always be philipsAir. | Yes | | name | For logging purposes. | No | | timeout_seconds | Number of seconds to wait for a response from the purifier. (Default: 5) | No | | devices | Array of Philips air purifiers (multiple supported). | Yes | |- name | Name of your device. | No | |- ip | IP address of your device. | Yes | |- protocol | Protocol used by your device: http (default), plain_coap, coap | No | |- sleep_speed | Does this device support 'sleep' speed? | No | |- light_control | Expose device lights as lightbulbs. | No | |- allergic_func | Does this device support 'allergic' function? | No | |- temperature_sensor | Expose device temperature as temperature sensor. | No | |- humidity_sensor | Expose device humidity as humidity sensor. | No | |- polling | Adding a refresh time for the all sensors in seconds. | No | |- humidifier | Adding humidified support. | No | |- logger | Getting data from humidity and temp sensors and save value into txt file. | No |