Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stianeikeland/homeautomation
:house: My zeromq based home-automation system.
https://github.com/stianeikeland/homeautomation
Last synced: 3 months ago
JSON representation
:house: My zeromq based home-automation system.
- Host: GitHub
- URL: https://github.com/stianeikeland/homeautomation
- Owner: stianeikeland
- Created: 2012-09-16T12:10:21.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-03-21T14:07:19.000Z (almost 10 years ago)
- Last Synced: 2024-04-10T02:43:19.395Z (9 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 254 KB
- Stars: 27
- Watchers: 8
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Home automation
===============My [Coffee/NodeJS][nodejs] + [0MQ][zeromq] home automation setup.
See my blog for more details: [blagg.tadkom.net][blagg]It consists of multiple services connected via a bus (zeromq):
- [Broker][broker] - Push/pull + pub/sub message hub. Message central.
- [Logger][logger] - Logs sensor data to cosm.com
- [Event-Triggers][triggers] - Triggers events based on certain sensor data situations
- [MCU-Relay][mcurelay] - Microcontroller relay - receives sensor data from jeenodes
- [Notification][notification] - Sends notifications to iOS devices (prowl) and to email
- [Powercontrol][powercontrol] - Controls and receives events from 433 mhz receivers/transmitter (RFXtrx433)
- [Heating][heating] - Time based thermostat service (Todo: PID + motion sensors)They can be launched using [pm2](https://npmjs.org/package/pm2). `pm2 start homeautomation-pm2.json`
The system also contains some microcontroller-code for arduino-compatible controllers ([Jeenode][jeenode]) with RFM12b radios.
- [MasterNode][masternode] - Receives sensors readings from slavenodes, controls Pioneer Home-Cinema Receiver via SR-bus. Acts as a simple serial bridge.
- [SlaveNode][slavenode] - Sleeps, wakes once every minute, gather sensor data, transmits wirelessly to masternode.Other hardware used:
- [Raspberry Pi][raspberry] - I have everything running on this little linux capable ARM board. It's connected via serial/TTL to a [Jeenode][jeenode].
- [RFXtrx433][rfxcom] - 433 mhz transceiver, from [RFXcom][rfxcom]. Controls Nexa power-relays, etc.
- [Jeenode][jeenode] - Small arduino-compatible AVR boards with HopeRF rfm12b radios on them.[nodejs]:http://nodejs.org/
[zeromq]:http://www.zeromq.org/
[rfxcom]:http://www.rfxcom.com/store/Transceivers/12103
[jeenode]:http://jeelabs.com/products/jeenode
[masternode]:https://github.com/stianeikeland/homeautomation/tree/master/microcontroller/masternode
[slavenode]:https://github.com/stianeikeland/homeautomation/tree/master/microcontroller/slavenode
[broker]:https://github.com/stianeikeland/homeautomation/tree/master/broker
[mcurelay]:https://github.com/stianeikeland/homeautomation/tree/master/services/mcu-relay
[heating]:https://github.com/stianeikeland/homeautomation/tree/master/services/heating
[powercontrol]:https://github.com/stianeikeland/homeautomation/tree/master/services/powercontrol
[notification]:https://github.com/stianeikeland/homeautomation/tree/master/services/notification
[logger]:https://github.com/stianeikeland/homeautomation/tree/master/services/logger
[triggers]:https://github.com/stianeikeland/homeautomation/tree/master/services/event-triggers
[raspberry]:http://raspberrypi.org/
[blagg]:http://blagg.tadkom.net/tag/homeautomation/