Difference between revisions of "The piMyHome Project"

From piMyHome Project
Jump to navigation Jump to search
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
[[File:Raspberry-pi-b-plus.jpg|right|250px|thumb|Raspberry Pi B+]]
 
[[File:Raspberry-pi-b-plus.jpg|right|250px|thumb|Raspberry Pi B+]]
 
piMyHome is a fast web application for the Bticino/Legrand home automation system, running on a  
 
piMyHome is a fast web application for the Bticino/Legrand home automation system, running on a  
[http://www.raspberrypi.org/ Raspberry Pi], a credit card sized and cheap mini computer platform. piMyHome is not a commercial project, it's completely open source and is available for free for anybody. Developers who wanna join us are very welcome.
+
[http://www.raspberrypi.org/ Raspberry Pi], a credit card sized and cheap mini computer platform. piMyHome is not a commercial project, it's completely open source and free for anybody. Developers who want to join us are very welcome.
  
  
 
==== Current Status ====
 
==== Current Status ====
piMyHome ist still in development and not ready yet. First public release is expected in January 2015.
+
piMyHome is still in early development and not ready yet. Our first public release is expected in November 2015.
 +
 
 +
{| class="wikitable"
 +
! style="text-align:left;"| Date
 +
! style="text-align:left;"| Status
 +
|- style="vertical-align:top;"
 +
|2015-02-11
 +
|Monitor daemon for who 1, 2 and 4 is almost done.
 +
Realized in python3, addresses and other static data are stored in sqlite3. States are stored in redis key-value cache. Slim and very fast. Running on RaspberryPi with Raspian Jessie.
 +
|- style="vertical-align:top;"
 +
|2015-05-15
 +
|Event daemon working. Pushover alarm notification implemented.
 +
|- style="vertical-align:top;"
 +
|2015-10-18
 +
| Responsible web interface implemented with a mix of nginx, Django, Javascript and uWSGI. Not ready for public yet
 +
|- style="vertical-align:top;"
 +
|2015-11-05
 +
| Started GUI development with a second approach using Tornado. Admin interface will remain in Django for easier handling of databases and authentication. Multi-language implemented.
 +
|}
  
 
==== Features ====
 
==== Features ====
* a monitor daemon is fetching OWN messages from your Bticino gateway and stores the state of each device (light, shutter, heating etc) in a Redis value cache
+
* A monitor daemon is fetching OWN messages from your Bticino gateway and stores the state of each device (light, shutter, heating etc.) in a Redis value cache.
* an event daemon watches what's going on and launches a user-defined action when an event is raised. The action launched can be anything, not just limited to the bticino system.  
+
* An event daemon watches what's going on and launches a user-defined action when an event is triggered. The action launched can be anything, not just limited to the bticino system.  
* a nice and responsive web multi-language frontend let you manage your home automation with any device such as iPhone, Android, Mac-PC, Windows-PC or XMBC
+
* A nice and responsive web multi-language frontend to manage your home automation with any device capable of browsing html pages, such as a smartphone, tablet, desktop PC, or XMBC (TV).
* Access control for user and groups
+
* Access control for users and groups.
* Each user can have his own environment and favorites
+
* Each user can have his own environment and favorites.
* Completely managed via browser, no programming skills needed
+
* Completely managed via browser, no programming skills required.
  
 
==== Hardware Requirements ====
 
==== Hardware Requirements ====
Line 55: Line 73:
  
 
|-
 
|-
|Rasbian OS
+
|Raspbian OS
 
|Debian based Linux OS for Raspberry Pi
 
|Debian based Linux OS for Raspberry Pi
|[http://www.raspberrypi.org/downloads/ raspberrypi.org]  
+
|[http://www.raspbian.org/ raspbian.org]  
  
 
|-
 
|-
Line 75: Line 93:
  
 
|-
 
|-
|uSGI
+
|uWSGI
 
|Websocket service for immediate response in website
 
|Websocket service for immediate response in website
 
|[https://uwsgi-docs.readthedocs.org/en/latest/ uwsgi-docs.readthedocs.org]
 
|[https://uwsgi-docs.readthedocs.org/en/latest/ uwsgi-docs.readthedocs.org]

Latest revision as of 11:58, 5 November 2015

Raspberry Pi B+

piMyHome is a fast web application for the Bticino/Legrand home automation system, running on a Raspberry Pi, a credit card sized and cheap mini computer platform. piMyHome is not a commercial project, it's completely open source and free for anybody. Developers who want to join us are very welcome.


Current Status

piMyHome is still in early development and not ready yet. Our first public release is expected in November 2015.

Date Status
2015-02-11 Monitor daemon for who 1, 2 and 4 is almost done.

Realized in python3, addresses and other static data are stored in sqlite3. States are stored in redis key-value cache. Slim and very fast. Running on RaspberryPi with Raspian Jessie.

2015-05-15 Event daemon working. Pushover alarm notification implemented.
2015-10-18 Responsible web interface implemented with a mix of nginx, Django, Javascript and uWSGI. Not ready for public yet
2015-11-05 Started GUI development with a second approach using Tornado. Admin interface will remain in Django for easier handling of databases and authentication. Multi-language implemented.

Features

  • A monitor daemon is fetching OWN messages from your Bticino gateway and stores the state of each device (light, shutter, heating etc.) in a Redis value cache.
  • An event daemon watches what's going on and launches a user-defined action when an event is triggered. The action launched can be anything, not just limited to the bticino system.
  • A nice and responsive web multi-language frontend to manage your home automation with any device capable of browsing html pages, such as a smartphone, tablet, desktop PC, or XMBC (TV).
  • Access control for users and groups.
  • Each user can have his own environment and favorites.
  • Completely managed via browser, no programming skills required.

Hardware Requirements

Product Price Where to buy
Raspberry Pi, model B+ ~32 EUR element14.com
Power supply 1200mA for the Raspberry Pi B+ ~ 8 EUR element14.com
Case for your Raspberry ~ 8 EUR element14.com
micro SDcard (min. 8 GB, better 16 ore more) ~10 EUR element14.com
LAN-cable to connect to your router or gateway ~ 5 EUR element14.com

Open Source Software used in this project

Software Description Homepage
Raspbian OS Debian based Linux OS for Raspberry Pi raspbian.org
Python very powerful and easy to learn scripting language python.org
Django Cool and powerful framework for Python djangoproject.com
Redis Fast key value cache for dynamic data redis.io
uWSGI Websocket service for immediate response in website uwsgi-docs.readthedocs.org
SQLite Simple single-file database system for static data sqlite.org
nginx Fast http web server nginx.org