... | ... | @@ -4,7 +4,22 @@ You will need Maven and Java Development Kit. git and wireshark are useful. |
|
|
|
|
|
git clone the zigbee4java repository (https://github.com/tlaukkan/zigbee4java.git) create a sub-directory and clone there the zigbee-dongle-kw2x implementation.
|
|
|
|
|
|
To use kw2x in the getaway application change the pom.xml as in state-of-impl.md.
|
|
|
To use kw2x in the getaway application change the pom.xml:
|
|
|
```
|
|
|
<dependency>
|
|
|
<groupId>org.bubblecloud.zigbee4java</groupId>
|
|
|
----> <artifactId>zigbee-dongle-cc2531</artifactId> <----
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
|
</dependency>
|
|
|
```
|
|
|
to
|
|
|
```
|
|
|
<dependency>
|
|
|
<groupId>org.bubblecloud.zigbee4java</groupId>
|
|
|
----> <artifactId>zigbee-dongle-kw2x</artifactId> <----
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
|
</dependency>
|
|
|
```
|
|
|
|
|
|
To set up git proxy:
|
|
|
`git config --global http.proxy http://proxy.server.it:8080`;
|
... | ... | |