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-rf-fan-remote

v0.1.28

Published

Homebridge Plugin for the FAN61T-4SP 315Mhz Fan Remote

Downloads

18

Readme

homebridge-rf-fan-remote Plugin

costco-com-ceiling-fans- -best-of-ge-52-savanna-led-ceiling-fan-condo-pinterest-ceiling-fans- -costco-com-ceiling-fans

NPM Downloads

costco-canada-east-secret-items-apr-17-2017-to-apr-23-throughout-best-of-ceiling-fans-costco

ge remote control

I wrote this plugin as a wrapper around mdhiggins ESP8266-HTTP-IR-Blaster to control my GE Ceiling fan. This particular fan uses a 315Mhz RF Remote control with the Model FAN61T-4SP. To use this plugin, you need to build this ESP8266 based IR Blaster device https://github.com/mdhiggins/ESP8266-HTTP-IR-Blaster, except you need to substitute the LED with a 315Mhz RF Transmitter module.

Circuit Diagram

RF Transmitter

RF-LED

DHT-YL

Breadboard view

img_1611

Installation

  1. sudo npm install -g homebridge-rf-fan-remote

configuration

Example config.json:

}
  "accessory": "RFRemote",
  "name": "Master",
  "irBlaster": "ESP_869815",
  "remote_code": "1011100101100100",
  "summer": true
}

Required settings

  • accessory - This must be "RFRemote"
  • name - Name of the device
  • irBlaster - Hostname or ip address of your irBlaster device
  • remote_code - This is the 16 Bit unique code for your fan.

Optional settings

  • summer - Is the fan in summer mode, defaults to true
  • out - out setting for IR Blaster, defaults to 1

Finding remote code for your remote / fan

To find the remote code for fan, I used an RTL_SDR and rtl_433.

Code/rtl_433-master/build/src/rtl_433 -f 314938000 -a

[03] {26} 17 2c 8f 80 : 00010111 00101100 10001111 10

remote_code starts at bit 4, and is 16 bits long. In the example the remote_code is 10111 00101100 100

Credits

  • mdhiggins - Creating the ESP8266 based IR Blaster, sharing your plans and source.
  • nfarina - For creating the dummy plugin which I used as base for this plugin.