Difference between revisions of "OpenHAB"

From air
Jump to navigation Jump to search
Line 1: Line 1:
 
[[Image:Openhablogo.png|300px|center|logo OpenHAB]]
 
[[Image:Openhablogo.png|300px|center|logo OpenHAB]]
   
  +
==Description==
 
 
[[Image:Openhab-dashboard.png|300px|right|thumb|OpenHAB Dashboard (in GreenT)]]
 
[[Image:Openhab-archi1.png|300px|right|thumb|center|OpenHAB Architecture]]
 
[[Image:Openhab-archi2.png|300px|right|thumb|center|OpenHAB Architecture]]
 
''The open Home Automation Bus (openHAB) project aims at providing a universal integration platform for all things around home automation. It is a pure Java solution, fully based on [[OSGi]]. The Equinox OSGi runtime and Jetty as a web server build the core foundation of the runtime.''
 
''The open Home Automation Bus (openHAB) project aims at providing a universal integration platform for all things around home automation. It is a pure Java solution, fully based on [[OSGi]]. The Equinox OSGi runtime and Jetty as a web server build the core foundation of the runtime.''
   
Line 8: Line 11:
 
OpenHAB is the first contribution of the brand-new [[Eclipse Smart Home]] project.
 
OpenHAB is the first contribution of the brand-new [[Eclipse Smart Home]] project.
   
  +
==Liens==
 
 
* Website: https://code.google.com/p/openhab/
 
* Website: https://code.google.com/p/openhab/
 
* Online Demo: http://demo.openhab.org:8080/greent/
 
* Online Demo: http://demo.openhab.org:8080/greent/
 
* Code Metrics : (130 Kloc) http://www.ohloh.net/p/openhab
 
* Code Metrics : (130 Kloc) http://www.ohloh.net/p/openhab
   
  +
==Installation et Démarrage==
[[Image:Openhab-dashboard.png|600px|center|OpenHAB Dashboard (in GreenT)]]
 
  +
Téléchargez les .zip de la dernière distribution d'OpenHAB (1.3.1 dans l'exemple).
[[Image:Openhab-archi1.png|600px|center|OpenHAB Architecture]]
 
  +
[[Image:Openhab-archi2.png|600px|center|OpenHAB Architecture]]
 
  +
  +
<pre>
  +
OPENHAB_VERSION=1.3.1
  +
cd ./OpenHAB/openhab-runtime-$OPENHAB_VERSION
  +
  +
cp -R ../openhab-demo-configuration-$OPENHAB_VERSION/addons .
  +
cp -R ../openhab-demo-configuration-$OPENHAB_VERSION/configurations .
  +
  +
chmod 775 start.sh
  +
  +
./start.sh
  +
  +
</pre>
  +
  +
  +
Depuis la console Equinox Gogo d'OpenHAB
  +
<pre>
  +
help
  +
lb
  +
</pre>
  +
  +
Ouvrir un navigateur sur http://localhost:8080/openhab.app?sitemap=demo
  +
  +
  +
Depuis la console JVisualVM
  +
<pre>
  +
jvisualvm
  +
</pre>

Revision as of 11:00, 29 September 2013

logo OpenHAB

Description

OpenHAB Dashboard (in GreenT)
OpenHAB Architecture
OpenHAB Architecture

The open Home Automation Bus (openHAB) project aims at providing a universal integration platform for all things around home automation. It is a pure Java solution, fully based on OSGi. The Equinox OSGi runtime and Jetty as a web server build the core foundation of the runtime.

It is designed to be absolutely vendor-neutral as well as hardware/protocol-agnostic. openHAB brings together different bus systems, hardware devices and interface protocols by dedicated bindings. These bindings send and receive commands and status updates on the openHAB event bus. This concept allows designing user interfaces with a unique look&feel, but with the possibility to operate devices based on a big number of different technologies. Besides the user interfaces, it also brings the power of automation logics across different system boundaries.

OpenHAB is the first contribution of the brand-new Eclipse Smart Home project.

Liens

Installation et Démarrage

Téléchargez les .zip de la dernière distribution d'OpenHAB (1.3.1 dans l'exemple).


OPENHAB_VERSION=1.3.1
cd ./OpenHAB/openhab-runtime-$OPENHAB_VERSION

cp -R ../openhab-demo-configuration-$OPENHAB_VERSION/addons .
cp -R ../openhab-demo-configuration-$OPENHAB_VERSION/configurations .

chmod 775 start.sh

./start.sh


Depuis la console Equinox Gogo d'OpenHAB

help
lb

Ouvrir un navigateur sur http://localhost:8080/openhab.app?sitemap=demo


Depuis la console JVisualVM

jvisualvm