Skip to content

Commit 3a91588

Browse files
authored
[fenecon] Change default port to 80 (#19442)
* Changed default port from 8084 to 80 (#19441) - see port example https://docs.fenecon.de/de/fems/fems-app/App_REST-JSON_Lesezugriff.html * Update link in documentation (#19441) Signed-off-by: Philipp Schneider <philipp.schneider@nixo-soft.de>
1 parent c470cbb commit 3a91588

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

bundles/org.openhab.binding.fenecon/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FENECON Binding
22

3-
The FENECON Binding integrates the [FENECON energy storage system](https://fenecon.de/) device into the openHAB system via [REST-API](https://docs.fenecon.de/_/de/fems/fems-app/OEM_App_REST_JSON.html).
3+
The FENECON Binding integrates the [FENECON energy storage system](https://fenecon.de/) device into the openHAB system via [REST-API](https://docs.fenecon.de/de/fems/fems-app/App_REST-JSON_Lesezugriff.html).
44

55
With the binding, it is possible to request status information from FENECON Home to allow you home automation decisions based on the current energy management.
66

@@ -24,7 +24,7 @@ The FENECON Thing only needs to be configured with the `hostname`, all other par
2424
|-----------------|----------------------------------------------------------------------------------|
2525
| hostname | Hostname or IP address of the FENECON device, e.g. 192.168.1.11 |
2626
| password | Password of the FENECON device. The password for guest access is set by default. |
27-
| port | Port of the FENECON device. Default: 8084 |
27+
| port | Port of the FENECON device. Default: 80 |
2828
| refreshInterval | Interval the device is polled in sec. Default 30 seconds |
2929

3030
## Channels

bundles/org.openhab.binding.fenecon/src/main/java/org/openhab/binding/fenecon/internal/FeneconConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ public class FeneconConfiguration {
2424

2525
public String hostname = "";
2626
public String password = "user";
27-
public int port = 8084;
27+
public int port = 80;
2828
public int refreshInterval = 30;
2929
}

bundles/org.openhab.binding.fenecon/src/main/resources/OH-INF/thing/thing-types.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<context>network-address</context>
7070
<label>Port</label>
7171
<description>Port of the FENECON device</description>
72-
<default>8084</default>
72+
<default>80</default>
7373
<advanced>true</advanced>
7474
</parameter>
7575
<parameter name="refreshInterval" type="integer" unit="s" min="1">

0 commit comments

Comments
 (0)