Coder Social home page Coder Social logo

atzbert / openhab2-addons Goto Github PK

View Code? Open in Web Editor NEW

This project forked from openhab/openhab-addons

0.0 1.0 0.0 344.74 MB

Add-ons for openHAB 2.x

License: Eclipse Public License 2.0

Batchfile 0.01% Shell 0.01% Java 99.30% C++ 0.08% C 0.08% Awk 0.04% HTML 0.25% CSS 0.04% JavaScript 0.19% XSLT 0.01%

openhab2-addons's Introduction

openHAB 2 Add-ons

This repository contains the official set of add-ons that are implemented on top of openHAB 2 Core APIs. Add-ons that got accepted in here will be maintained (e.g. adapted to new core APIs) by the openHAB 2 maintainers.

To get started with binding development, follow our guidelines and tutorials over at https://www.openhab.org/docs/developer/.

If you are interested in openHAB 2 Core development, we invite you to come by on https://github.com/openhab/openhab-core.

Add-ons in other repositories

Some add-ons are not in this repository, but still part of the official openHAB 2 distribution. An incomplete list of other repositories follows below:

Development / Repository Organisation

openHAB 2 add-ons are Java .jar files.

The openHAB 2 build system is based on maven. The official IDE (Integrated development environment) is Eclipse.

You find the following repository structure:

.
+-- addons/  Legacy addons that are currently ported to the new buildsystem
|
+-- bom      Maven buildsystem: Bill of materials
|   +-- openhab-addons  Lists all extensions for other repos to reference them
|   +-- ...             Other boms
|
+-- bundles  Official openHAB extensions
|   +-- org.openhab.binding.airquality
|   +-- org.openhab.binding.astro
|   +-- ...
|
+-- features/karaf  An extension usually has dependencies (at least openHAB core).
|            |      In those feature files are the dependencies for the OSGi container declared.
|            +-- openhab-addons-external/src/main/feature/feature.xml
|            +-- openhab-addons/src/main/feature/feature.xml
|
+-- itests   Integration tests. Those tests require parts of the framework to run.
|   +-- org.openhab.binding.astro.tests
|   +-- org.openhab.binding.avmfritz.tests
|   +-- ...
|
+-- poms     Maven buildsystem files
+-- src/etc  Auxilary buildsystem files: The license header for automatic checks for example
+-- tools    Static code analyser instructions
|
+-- CODEOWNERS  This file assigns people to directories so that they are informed if a pull-request
                would modify that directory/binding.

Command line build

To build all add-ons from the command-line, type in:

mvn clean install

Optionally you can skip tests (-DskipTests) or skip some static analysis (-DskipChecks) this does improve the build time but could hide problems in your code. For binding development you want to run that command without skipping checks and tests.

Subsequent calls can include the -o for offline as in: mvn clean install -DskipChecks -o which will be a bit faster.

For integration tests you might need to run: mvn clean install -DwithResolver -DskipChecks.

How to develop in the Eclipse IDE

  1. Install Bndtools in your Eclipse IDE. (Is automatically installed if you have used the Eclipse Installer for openHAB development as described here: https://www.openhab.org/docs/developer/development/ide.html)
  2. Checkout the bnd based openHAB demo application: git clone --depth=1 https://github.com/maggu2810/openhab-demo.
  3. Open the directory in Eclipse. Wait for the download and build to finish (about 3-5 minutes).
  4. Checkout this repository: git clone --depth=1 https://github.com/openhab/openhab2-addons
  5. In Eclipse File->Import->"Existing maven projects": Add the binding that you want to develop on to the workspace.
  6. In Eclipse Package Explorer: Search for pom.xml in the demo-app project. Bildschirmfoto vom 2019-03-19 13-46-48 Add your addon as maven dependency like so (replace astro!):
    <project ...>
      ...
      <dependencies>
         <dependency>
             <groupId>org.openhab.addons.bundles</groupId>
             <artifactId>org.openhab.binding.astro</artifactId>
             <version>${project.version}</version>
             <scope>runtime</scope>
         </dependency>
      </dependencies>
    </project>
  7. In Eclipse Package Explorer: Search for app.bndrun in the "demo-app" project. Double click (takes a few seconds).
  8. Add your project to "Run requirements" via drag&drop from the Package Explorer. Bildschirmfoto vom 2019-03-18 12-26-03
  9. Execute with "Run OSGi"

The demo application runs a slim set of openHAB core bundles including automations (next gen rules) and PaperUI. The startup should only take about 5 seconds and you are greeted by the openHAB console where you can type in console commands.

Happy coding!

openhab2-addons's People

Contributors

kaikreuzer avatar wborn avatar cdjackson avatar cweitkamp avatar velinyordanov avatar kgoderis avatar hilbrand avatar gerrieg avatar martinvw avatar lolodomo avatar marcelrv avatar digitaldan avatar paulianttila avatar maggu2810 avatar j-n-k avatar clinique avatar peuter avatar mhilbush avatar bgilmer77 avatar jongj avatar hakan42 avatar semperor avatar ssalonen avatar mjagdis avatar vbier avatar dimalo avatar floriansw avatar olibutzki avatar watou avatar thomdietrich avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.