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-ac-remote

v0.0.2

Published

AC Remote Control plugin for homebridge: https://github.com/nfarina/homebridge

Downloads

5

Readme

Homebridge-AC-Remote

This is a simple plugin for use with Particle devices to transmit AC codes to a dumb AC unit.

Note this is very much beta, and still a long way to go to be reliable. Right now you can command/control via a particle, but not able to read back telementry. Homebridge and the particle will become out of sync if you restart homebridge.

How to Use

  • Flash your Particle Device
  • Wire up an IR LED
  • put in an enclosure (optional)
  • place in range of your target AC unit
  • install and configure the plugin into Homebridge
  • sync the settings manually (power and temp)

Config

{
  "bridge": {
    "name": "Homebridge",
    "username": "CC:22:3D:E3:CE:39",
    "port": 51826,
    "pin": "031-45-154"
  },
  "description": "This is an example configuration file with one Particle platform loaded with the correct fromware for AC Remote.  You should replace the access token and device id placeholder with your access token and device id",
  "platforms": [
    {
      "platform": "ACRemote",
      "name": "Remote AC Devices",
      "access_token": "<<access token>>",
      "cloudurl": "https://api.spark.io/v1/devices/",
      "devices": [
        {
          "accessory": "OfficeAC",
          "name": "Office AC",
          "deviceid": "8b9201a99023819283757291"
        },
        {
          "accessory": "BedroomAC",
          "name": "Bedroom AC",
          "deviceid": "8b9201a99283918377848939"
        }
      ]
    }
  ]
}

Hardware

This is Plans will be posted later in this repo.

This implementation is based on the Particle line of devices using the Particle cloud to send/receive telemetry and commands.

Mostly implimented Paticle App here. Only tested on the Photon. Should work with others however. https://go.particle.io/shared_apps/5d2c7e063275db000b97f3c8

Todo

  • add get functions to poll partile for existing state
  • more testing
  • build a hardware board
  • add a temp sensor to board
  • build an enclosure
  • impliment an identify function to blink the LED for 20 seconds

Credits

Thanks to @krvarma for the initial implementation of homebridge-particle. Much of the code here was reused. https://github.com/krvarma/homebridge-particle

I decided to start a new repo dedicated to AC Controllers rather than fork the above repo, is this is less general use than his intended homebridge-particle plugin.