https://github.com/niqdev/enhanced-domotic
Domotic library in Java
https://github.com/niqdev/enhanced-domotic
Last synced: about 1 year ago
JSON representation
Domotic library in Java
- Host: GitHub
- URL: https://github.com/niqdev/enhanced-domotic
- Owner: niqdev
- Created: 2014-11-26T09:51:14.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-11T07:14:24.000Z (over 11 years ago)
- Last Synced: 2025-03-05T09:03:46.910Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 559 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
enhanced-domotic
================
The aim of the project is to write a domotic library in Java.
For now, only [OpenWebNet](http://www.myopen-legrandgroup.com/resources/own_protocol/default.aspx) protocol is supported.
Example with fluent syntax
```java
EnhancedDomotic.config(config)
.type(COMMAND)
.action(TURN_ON)
.device(LIGHT)
.deviceProperty(ID, 21)
.execute();
```
[Here](https://github.com/niqdev/enhanced-domotic/tree/master/src/test/java/com/domotic/enhanced/openwebnet) for more examples.
Android development: closed [issue](https://github.com/niqdev/enhanced-domotic/issues/1).
####How to build the project:
```
mvn eclipse:clean eclipse:eclipse
mvn clean install
```