Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bundles/org.openhab.binding.fenecon/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FENECON Binding

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).
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).

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.

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

## Channels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public class FeneconConfiguration {

public String hostname = "";
public String password = "user";
public int port = 8084;
public int port = 80;
public int refreshInterval = 30;
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<context>network-address</context>
<label>Port</label>
<description>Port of the FENECON device</description>
<default>8084</default>
<default>80</default>
<advanced>true</advanced>
</parameter>
<parameter name="refreshInterval" type="integer" unit="s" min="1">
Expand Down