-->
Page 1 of 2

Home automation with 433mhz

PostPosted: Fri Jan 29, 2016 11:19 am
by roccomuso
Hei guys,
I wanna show my last Internet of things project for Home Automation with 433mhz radio communication (using an Arduino connected with radio transmitter/receiver).
You can control 433 MHz RC power sockets, PIR, Door Sensors and much more with it.
I had a lot of 433mhz in my home, so I've decided to build something cool, easy to interact and start with. The system is pretty intuitive. The are a lot of cool features:

    Multi-platform (Windows, Mac OS X, Linux).
    Intuitive API to build your own interface.
    Built-In Material design cards-based template.
    Real-time UI refresh.
    Detect Radio Frequency codes (433mhz).
    Generate Cards and assign it to your rooms.
    Control RC power sockets, PIR sensors, Door sensors and much more.
    Totally Open Source & Open Hardware.

Iot-433Mhz is built on top of Node.js and can be installed through npm. The UI follows the material design guidelines. Below a preview:

Image

In the future i'd like to integrate also wifi esp8266-based sensors.

Here the link to the repo:
https://github.com/roccomuso/iot-433mhz

Any feedback would be appreciated. Thanks! :)

Re: Home automation with 433mhz

PostPosted: Sun Jan 31, 2016 3:47 pm
by eduperez
This is very interesting, I am planning to do something similar.

However, I am having trouble finding 433Mhz devices that are "guaranteed" to work with the current Arduino libraries (I lack the tools / knowledge required to decipher a protocol myself): there are dozens of devices available for cheap on eBay, but how can you know beforehand which ones will work?

May thnks.

Re: Home automation with 433mhz

PostPosted: Sun Jan 31, 2016 4:35 pm
by roccomuso
eduperez wrote:This is very interesting, I am planning to do something similar.

However, I am having trouble finding 433Mhz devices that are "guaranteed" to work with the current Arduino libraries (I lack the tools / knowledge required to decipher a protocol myself): there are dozens of devices available for cheap on eBay, but how can you know beforehand which ones will work?

May thnks.


It's quite easy. More ore less most of the 433mhz projects are based on this library: https://github.com/sui77/rc-switch

And in the main README you can easily read which chipset is currently supported:

All you need is a Arduino, a 315/433MHz AM transmitter and one or more devices with a SC5262 / SC5272, HX2262 / HX2272, PT2262 / PT2272, EV1527, RT1527, FP1527 or HS1527 chipset.

Re: Home automation with 433mhz

PostPosted: Sun Jan 31, 2016 5:12 pm
by eduperez
May thanks, I guess I should just use those chip names when searching for a device.