Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pyrou/x10rf-raspberry
X10RF-raspberry is for controlling 433(.92)Mhz X10 receiver with the raspberry pi
https://github.com/pyrou/x10rf-raspberry
diy home-automation raspberry-pi raspberrypi wiringpi
Last synced: about 2 months ago
JSON representation
X10RF-raspberry is for controlling 433(.92)Mhz X10 receiver with the raspberry pi
- Host: GitHub
- URL: https://github.com/pyrou/x10rf-raspberry
- Owner: pyrou
- License: mit
- Created: 2014-10-13T22:35:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-13T23:12:02.000Z (about 10 years ago)
- Last Synced: 2024-10-14T10:48:38.444Z (3 months ago)
- Topics: diy, home-automation, raspberry-pi, raspberrypi, wiringpi
- Language: C++
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
X10RF-raspberry
===============X10RF-raspberry is for controlling 433(.92)Mhz X10 receiver with the Raspberry pi. This code is based on a fork of [p2baron/x10rf](http://github.com/pyrou/x10rf) initially created for Energia, then ported to Arduino plateform.
### Dependencies
wiringPi : https://projects.drogon.net/raspberry-pi/wiringpi/### Building WiringPi
```bash
sudo apt-get install git-core
git clone git://git.drogon.net/wiringPi
cd wiringPi/wiringPi
./build
```## Usage
X10RF-raspberry is shipped with an example program *send* that you have to compile by executing *make*.
You may want to change the used GPIO pin before compilation in the send.cpp source file.```bash
git clone [email protected]:pyrou/X10RF-raspberry.git
cd X10RF-raspberry
make
sudo ./send B 10 ON
```