Updated external content (Jenkins build 1766)

pull/2219/head
openHAB Build Server 2023-11-08 05:50:53 +00:00
parent ed131d8a54
commit ccc7f78078
2 changed files with 149 additions and 8 deletions

View File

@ -31,6 +31,9 @@ In case the parsed information that comes with the binding out of the box differ
|------------------------|------------|-------------------------------------------------------------------------------------|
| local-connect-inverter | Thing | This is model representation of inverter with all the data available as a channels |
Note: Channels may vary depending on the inverter type and the availability of information for parsing the raw data.
If you're missing a channel this means that it's not supported for your inverter type.
## Thing Configuration
### Local Connect Inverter Configuration
@ -43,12 +46,25 @@ In case the parsed information that comes with the binding out of the box differ
### Inverter Output Channels
| Channel | Type | Description |
|--------------------------|----------------------------|--------------------------------------------------|
| inverter-output-power | Number:Power | The output power of the inverter [W] |
| inverter-current | Number:ElectricCurrent | The output current of the inverter [A] |
| inverter-voltage | Number:ElectricPotential | The output voltage of the inverter [V] |
| inverter-frequency | Number:Frequency | The frequency of the output voltage [Hz] |
| Channel | Type | Description |
|---------------------------------|----------------------------|----------------------------------------------------------------|
| inverter-output-power | Number:Power | The output power of the inverter [W] |
| inverter-current | Number:ElectricCurrent | The output current of the inverter [A] |
| inverter-voltage | Number:ElectricPotential | The output voltage of the inverter [V] |
| inverter-frequency | Number:Frequency | The frequency of the electricity of the inverter [Hz] |
| inverter-output-power-phase1 | Number:Power | The output power of phase 1 of the inverter [W] |
| inverter-output-power-phase2 | Number:Power | The output power of phase 2 of the inverter [W] |
| inverter-output-power-phase3 | Number:Power | The output power of phase 3 of the inverter [W] |
| inverter-total-output-power | Number:Power | The total output power of all phases of the inverter [W] |
| inverter-current-phase1 | Number:ElectricCurrent | The output current of phase 1 of the inverter [A] |
| inverter-current-phase2 | Number:ElectricCurrent | The output current of phase 2 of the inverter [A] |
| inverter-current-phase3 | Number:ElectricCurrent | The output current of phase 3 of the inverter [A] |
| inverter-voltage-phase1 | Number:ElectricPotential | The output voltage of phase 1 of the inverter [V] |
| inverter-voltage-phase2 | Number:ElectricPotential | The output voltage of phase 2 of the inverter [V] |
| inverter-voltage-phase3 | Number:ElectricPotential | The output voltage of phase 3 of the inverter [V] |
| inverter-frequency-phase1 | Number:Frequency | The frequency of phase 1 of the inverter [Hz] |
| inverter-frequency-phase2 | Number:Frequency | The frequency of phase 2 of the inverter [Hz] |
| inverter-frequency-phase3 | Number:Frequency | The frequency of phase 3 of the inverter [Hz] |
### Photovoltaic Panels Production Channels
@ -86,6 +102,23 @@ In case the parsed information that comes with the binding out of the box differ
| last-update-time | DateTime | Last time when a call has been made to the inverter |
| raw-data | String | The raw data retrieved from inverter in JSON format. (Usable for channels not implemented. Can be consumed with the JSONpath transformation |
### Statistics / Usage related Channels
| Channel | Type | Description |
|----------------------------------|----------------------------|-----------------------------------------------------------|
| power-usage | Number:Power | Current power usage / consumption of the building [W] |
| total-energy | Number:Energy | Total energy output from the inverter [kWh] |
| total-battery-discharge-energy | Number:Energy | Total energy from the battery [kWh] |
| total-battery-charge-energy | Number:Energy | Total energy to the battery [kWh] |
| total-pv-energy | Number:Energy | Total energy from the PV [kWh] |
| total-consumption | Number:Energy | Total energy consumed for the building [kWh] |
| total-feed-in-energy | Number:Energy | Total energy consumed from the electricity provider [kWh] |
| today-energy | Number:Energy | Energy output from the inverter for the day [kWh] |
| today-battery-discharge-energy | Number:Energy | Total energy from the battery output for the day [kWh] |
| today-battery-charge-energy | Number:Energy | Total energy charged to the battery for the day [kWh] |
| today-feed-in-energy | Number:Energy | Total energy charged to the battery for the day [kWh] |
| today-consumption | Number:Energy | Total energy consumed for the day [kWh] |
### Properties
| Property | Description |

View File

@ -10,6 +10,7 @@
<description>The inverter representation that supports local connections via HTTP</description>
<channels>
<!-- Single phase specific channels -->
<channel id="inverter-output-power" typeId="system.electric-power">
<label>Inverter Input/Output Power</label>
<description>Power to/from the inverter</description>
@ -24,6 +25,61 @@
</channel>
<channel id="inverter-frequency" typeId="frequency"/>
<!-- Three phase specific channels -->
<channel id="inverter-output-power-phase1" typeId="system.electric-power">
<label>Inverter Input/Output Power Phase 1</label>
<description>Power to/from the inverter phase 1</description>
</channel>
<channel id="inverter-output-power-phase2" typeId="system.electric-power">
<label>Inverter Input/Output Power Phase 2</label>
<description>Power to/from the inverter phase 2</description>
</channel>
<channel id="inverter-output-power-phase3" typeId="system.electric-power">
<label>Inverter Input/Output Power Phase 3</label>
<description>Power to/from the inverter phase 3</description>
</channel>
<channel id="inverter-total-output-power" typeId="system.electric-power">
<label>Inverter Input/Output Total Power</label>
<description>Power to/from the inverter on all phases</description>
</channel>
<channel id="inverter-current-phase1" typeId="system.electric-current">
<label>Inverter Input/Output Current Phase 1</label>
<description>Current to/from the inverter phase 1</description>
</channel>
<channel id="inverter-current-phase2" typeId="system.electric-current">
<label>Inverter Input/Output Current Phase 2</label>
<description>Current to/from the inverter phase 2</description>
</channel>
<channel id="inverter-current-phase3" typeId="system.electric-current">
<label>Inverter Input/Output Current Phase 3</label>
<description>Current to/from the inverter phase 3</description>
</channel>
<channel id="inverter-voltage-phase1" typeId="system.electric-voltage">
<label>Inverter Voltage Phase 1</label>
<description>Voltage of the inverter's phase 1</description>
</channel>
<channel id="inverter-voltage-phase2" typeId="system.electric-voltage">
<label>Inverter Voltage Phase 2</label>
<description>Voltage of the inverter's phase 2</description>
</channel>
<channel id="inverter-voltage-phase3" typeId="system.electric-voltage">
<label>Inverter Voltage Phase 3</label>
<description>Voltage of the inverter's phase 3</description>
</channel>
<channel id="inverter-frequency-phase1" typeId="frequency">
<label>Inverter Voltage Phase 3</label>
<description>Voltage of the inverter's phase 3</description>
</channel>
<channel id="inverter-frequency-phase2" typeId="frequency">
<label>Inverter Voltage Phase 2</label>
<description>Voltage of the inverter's phase 3</description>
</channel>
<channel id="inverter-frequency-phase3" typeId="frequency">
<label>Inverter Voltage Phase 3</label>
<description>Voltage of the inverter's phase 3</description>
</channel>
<!-- Generic channels -->
<channel id="pv1-voltage" typeId="system.electric-voltage">
<label>PV 1 Voltage</label>
<description>Electric voltage of PV String 1</description>
@ -77,17 +133,69 @@
<label>Battery Level</label>
<description>The battery state of charge in percent</description>
</channel>
<channel id="feed-in-power" typeId="system.electric-power">
<label>Feed-in Power</label>
<label>Feed-In Power</label>
<description>Power to/from the electricity network.</description>
</channel>
<channel id="power-usage" typeId="system.electric-power">
<label>Power Usage</label>
<description>Current power consumption of the building</description>
</channel>
<channel id="total-energy" typeId="system.electric-energy">
<label>Total Energy</label>
<description>Total energy output from the inverter</description>
</channel>
<channel id="total-battery-discharge-energy" typeId="system.electric-energy">
<label>Total Battery Discharge Energy</label>
<description>Total energy from the battery output</description>
</channel>
<channel id="total-battery-charge-energy" typeId="system.electric-energy">
<label>Total Battery Charge Energy</label>
<description>Total energy charged to the battery</description>
</channel>
<channel id="total-pv-energy" typeId="system.electric-energy">
<label>Total PV Energy</label>
<description>Total energy produced by the PV</description>
</channel>
<channel id="total-consumption" typeId="system.electric-energy">
<label>Total Consumption</label>
<description>Total energy consumed from the building</description>
</channel>
<channel id="total-feed-in-energy" typeId="system.electric-energy">
<label>Total Feed-In Consumption</label>
<description>Total energy consumed from the electricity provider</description>
</channel>
<channel id="today-energy" typeId="system.electric-energy">
<label>Today Energy</label>
<description>Energy output from the inverter for the day</description>
</channel>
<channel id="today-battery-discharge-energy" typeId="system.electric-energy">
<label>Today Battery Discharge Energy</label>
<description>Total energy from the battery output for the day</description>
</channel>
<channel id="today-battery-charge-energy" typeId="system.electric-energy">
<label>Today Battery Charge Energy</label>
<description>Total energy charged to the battery for the day</description>
</channel>
<channel id="today-feed-in-energy" typeId="system.electric-energy">
<label>Today Feed-In Energy</label>
<description>Energy consumed from the electricity provider for the day</description>
</channel>
<channel id="today-consumption" typeId="system.electric-energy">
<label>Today Consumption</label>
<description>Energy consumed for the day</description>
</channel>
<channel id="last-update-time" typeId="last-retrieve-time-stamp"/>
<channel id="raw-data" typeId="raw-data-type"/>
</channels>
<properties>
<property name="thingTypeVersion">1</property>
</properties>
<config-description>
<parameter name="refreshInterval" type="integer" min="1" max="600">
<label>Refresh Interval</label>