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

node-red-contrib-rfxcom

v2.13.0

Published

A set of node-red nodes to use the Rfxcom RFXtrx433 remote control transceiver

Downloads

318

Readme

node-red-contrib-rfxcom

A collection of Node-RED nodes to send and receive home automation commands and data using an RFXCOM RFXtrx433E home automation controller. Also compatible with the older RFXtrx433 transceivers.

Install

Either install from the palette, or use npm to install this package locally in the Node-RED data directory (by default, $HOME/.node-red):

cd $HOME/.node-red
npm install node-red-contrib-rfxcom

The nodes will be added to the palette the next time node-RED is started, under the 'home automation' category.

Nodes included in the package

rfx-lights-in Receives messages from 'lighting' type devices such as remote controls, and PIR sensors used as light switches.

rfx-lights-out Sends messages to 'lighting' type devices including switches, dimmers, and some types of relay.

rfx-fan-out Sends messages to extractor fans, ceiling fans, ventilators and cooker hoods

rfx-blinds-in Receives messages from curtains, blinds, and awnings remote controls (also supports the LightwaveRF in-line relay)

rfx-blinds-out Sends commands to curtains, blinds, and awnings motors, including Somfy/RFY units (also supports the LightwaveRF in-line relay)

rfx-doorbell-in Receives messages from wireless bell pushes

rfx-doorbell-out Sends messages to wireless door chimes

rfx-meter Receives messages from wireless energy monitors such as OWL, and Carteletronic TIC/Linky transmitters

rfx-sensor Receives messages from temperature, humidity, pressure and other weather sensors. Also handles soil moisture sensors, Digimax thermostats, and the Maverick ET-732 BBQ thermometer.

rfx-trv Sends set temperature commands to Smartwares Thermostatic Radiator Valves

rfx-heat Sends commands to various types of wood & gas stoves, thermostats, and other heating devices

rfx-detector Receives messages from wireless intruder and smoke detectors, and X10 alarm system remotes. This node and the associated software must not be used in situations where the avoidance of damage to or loss of property, or protection from risk of injury or death, may depend on its correct operation.

rfx-alarm Sends X10 alarm system commands, including the 'panic' command which will also cause smoke detector & intruder alarm sounders to sound. This node and the associated software must not be used in situations where the avoidance of damage to or loss of property, or protection from risk of injury or death, may depend on its correct operation.

rfx-PT2262-in Receives messages from devices using the PT2262 chipset. Many no-name remote controls and alarm systems use these chips

rfx-PT2262-out Sends messages to devices using the PT2262 family of chips.

Basic help text is provided for each node. Additional information is available in the 'RFXmngr.exe' program supplied with the RFXtrx433E, and more details may be found in the SDK documentation, available on request from RFXCOM.

Example flow

The following Node-RED flow listens to an Oregon temperature sensor, and turns a HomeEasy relay on if the temperature is 9.5 degrees or less, off otherwise:

[{"id":"dc1031e4.23efd","type":"rfxtrx-port","port":"/dev/ttyUSB0"},{"id":"f858dd6.f07a72","type":"rfx-sensor","name":"","port":"dc1031e4.23efd","topicSource":"single","topic":"TH1/0x8E01","x":113,"y":118,"z":"4235a364.bdca5c","wires":[["66729a21.998d64"]]},{"id":"1b5de8f1.e4a217","type":"rfx-lights-out","name":"","port":"dc1031e4.23efd","topicSource":"node","topic":"AC/0x001EF1CE/4","x":591,"y":215,"z":"4235a364.bdca5c","wires":[]},{"id":"66729a21.998d64","type":"switch","name":"","property":"payload.temperature.value","rules":[{"t":"gt","v":"9.5"},{"t":"else"}],"checkall":"true","outputs":2,"x":226,"y":208,"z":"4235a364.bdca5c","wires":[["41141c7b.beebe4"],["8ac73565.7538c8"]]},{"id":"41141c7b.beebe4","type":"change","action":"replace","property":"payload","from":"","to":"\"Off\"","reg":false,"name":"Turn off","x":396,"y":155,"z":"4235a364.bdca5c","wires":[["1b5de8f1.e4a217"]]},{"id":"8ac73565.7538c8","type":"change","action":"replace","property":"payload","from":"","to":"\"On\"","reg":false,"name":"Turn on","x":397,"y":271,"z":"4235a364.bdca5c","wires":[["1b5de8f1.e4a217"]]}]