4 releases
0.2.1 | Oct 3, 2020 |
---|---|
0.2.0 | Oct 2, 2020 |
0.1.1 | Aug 26, 2017 |
0.1.0 | Aug 26, 2017 |
#994 in Hardware support
13KB
275 lines
home-easy-rs
Description
home-easy-rs
aims to implement the home-easy protocol, used by some home automation devices. Currently, it have been tested with Chacon DIO remote plugs (Ref. 54760), a Seeds Studio 433MHz emetter and a Raspberry Pi 3 on ArchLinux. The current code is mostly a translation of the C++ code of Vincent Demay and Idleman.
This code produce both a libray to use with your own projects, and a CLI utility called dios
to test it easily.
Cross-Compile
You can use cross to compile for ARM architecture (tested on Raspberry Pi):
cross build --target=armv7-unknown-linux-musleabihf --release
Use in a Container
You can use the Makefile
directly to build a release version and create a
Docker image to deploy easily.
make release
On your Raspberry Pi, you can then run the dios
command from Docker:
docker run --device /dev/gpiomem dios:v0.2.0 ./dios 0 12341234 1 off
CLI Utility Usage
You must first authentify the emetter with the receipter (the way to do it depends on your device, please refer to its manual).
sudo dios 0 12321234 3 on -v
Dependencies
~1.5MB
~23K SLoC