# 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). 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. This makes it possible, for example, to switch on other consumers such as the dishwasher or washing machine in the case of power overproduction. ## Supported Things Currently only one Thing is supported: The `home-device` connection to the FENECON energy storage system. This Binding was tested with an [FENECON HOME 10](https://fenecon.de/fenecon-home-10/) device. ## Discovery Auto-discovery is not supported. ## Thing Configuration The FENECON Thing only needs to be configured with the `hostname`, all other parameters are optional and prefilled with the suitable default values: | Parameter | Description | |-----------------|----------------------------------------------------------------------------------| | 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 | | refreshInterval | Interval the device is polled in sec. Default 30 seconds | ## Channels The FENECON binding currently only provides access to read out the values from the energy storage system. | Channel | Type | Read/Write | Description | |-------------------------------|----------------------|------------|-----------------------------------------------------------------------------| | state | String | R | FENECON system state: Ok, Info, Warning or Fault | | last-update | DateTime | R | Last successful update via REST-API from the FENECON system | | ess-soc | Number:Dimensionless | R | Battery state of charge in percent | | charger-power | Number:Power | R | Current charger power of energy storage system in watt. | | discharger-power | Number:Power | R | Current discharger power of energy storage system in watt. | | emergency-power-mode | Switch | R | Indicates if there is grid power is off and the emergency power mode is on. | | production-active-power | Number:Power | R | Current active power producer load in watt. | | production-max-active-power | Number:Power | R | Maximum active production power in watt that was measured. | | export-to-grid-power | Number:Power | R | Current export power to grid in watt. | | exported-to-grid-energy | Number:Energy | R | Total energy exported to the grid in watt per hour. | | consumption-active-power | Number:Power | R | Current active power consumer load in watt. | | consumption-max-active-power | Number:Power | R | Maximum active consumption power in watt that was measured. | | consumption-active-power-l1 | Number:Power | R | Current active power consumer load in watt on phase 1. | | consumption-active-power-l2 | Number:Power | R | Current active power consumer load in watt on phase 2. | | consumption-active-power-l3 | Number:Power | R | Current active power consumer load in watt on phase 3. | | import-from-grid-power | Number:Power | R | Current import power from grid in watt. | | imported-from-grid-energy | Number:Energy | R | Total energy imported from the grid in watt per hour. | ## Full Example ### fenecon.things ```java Thing fenecon:home-device:local "FENECON Home" [hostname="192.168.1.11", refreshInterval=5] ``` ### demo.items ```java // Sitemap Items Group Home "MyHome" ["Indoor"] Group GF "GroundFloor" (Home) ["GroundFloor"] // Utility room Group GF_UtilityRoom "Utility room" (Home, GF) ["Room"] Group GF_UtilityRoomSolar "Utility room solar" (GF_UtilityRoom) ["Inverter"] // FENECON items String EssState (GF_UtilityRoomSolar) ["Status"] {channel="fenecon:home-device:local:state"} DateTime LastFeneconUpdate