Compare commits

...

9 Commits

Author SHA1 Message Date
BWS Systems
d9e09851ee Merge pull request #1392 from dedeweb/master
Domoticz API changes
2025-09-07 09:52:45 -04:00
denis
d57bfec7ba use new domoticz API 2023-09-14 09:37:21 +02:00
BWS Systems
483b165f2a update pom.xml to correct version umber 2022-02-10 10:32:19 -05:00
BWS Systems
e2969c1a49 Merge pull request #1358 from bwssytems/devbranch5.4.1
Devbranch5.4.1
fixes #1267
2022-01-30 15:17:42 -05:00
BWS Systems
c99777efe7 Merge pull request #1318 from bwssytems/dependabot/maven/org.apache.httpcomponents-httpclient-4.5.13
Bump httpclient from 4.5.1 to 4.5.13
2022-01-30 15:01:27 -05:00
BWS Systems
8363d4c78c Merge pull request #1314 from hanno2003/master
Fixed typo in docker setup script
2022-01-30 15:00:23 -05:00
dependabot[bot]
e015bca721 Bump httpclient from 4.5.1 to 4.5.13
Bumps httpclient from 4.5.1 to 4.5.13.

---
updated-dependencies:
- dependency-name: org.apache.httpcomponents:httpclient
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-04 01:05:03 +00:00
hgeorg
3b5eea0dce Merge pull request #1 from hgeorg/hgeorg-patch-1
Update README.md
2021-05-25 23:37:55 +02:00
hgeorg
25e8b3f24f Update README.md
Fixed typo in docker script
2021-05-25 23:37:35 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -161,7 +161,7 @@ pi@raspberrypi:~ $ docker run \
--volume=$PWD:/ha-bridge/data \
--volume=/etc/localtime:/etc/localtime:ro \
--volume=/etc/timezone:/etc/timezone:ro \
habridge/ha-bridge-raspberry-pi3 \
habridge/ha-bridge-raspberrypi3 \
-Dserver.port=8080 \
-Dsecurity.key=secret
```

View File

@@ -5,7 +5,7 @@
<groupId>com.bwssystems.HABridge</groupId>
<artifactId>ha-bridge</artifactId>
<version>5.4.1RC1-java11</version>
<version>5.4.1-java11</version>
<packaging>jar</packaging>
<name>HA Bridge</name>
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.1</version>
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>

View File

@@ -12,8 +12,8 @@ import com.google.gson.Gson;
public class DomoticzHandler {
private static final Logger log = LoggerFactory.getLogger(DomoticzHandler.class);
private static final String GET_REQUEST = "/json.htm?type=";
private static final String DEVICES_TYPE = "devices";
private static final String GET_REQUEST = "/json.htm?type=command&param=";
private static final String DEVICES_TYPE = "getdevices";
private static final String SCENES_TYPE = "scenes";
private static final String FILTER_USED = "&used=true";
private NamedIP domoticzAddress;