added migrated 2.x add-ons

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer
2020-09-21 01:58:32 +02:00
parent bbf1a7fd29
commit 6df6783b60
11662 changed files with 1302875 additions and 11 deletions

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<config-description:config-descriptions
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:config-description="https://openhab.org/schemas/config-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/config-description/v1.0.0 https://openhab.org/schemas/config-description-1.0.0.xsd">
<config-description uri="thing-type:sunspec:modbusconfig">
<parameter name="refresh" type="integer" min="0" unit="s">
<label>Refresh Interval</label>
<description>Poll interval. Use zero to disable automatic polling.</description>
<default>5</default>
</parameter>
<parameter name="address" type="integer" min="0" max="65535">
<label>Start Address</label>
<description>Start address of the model block</description>
<default>40000</default>
<advanced>true</advanced>
</parameter>
<parameter name="length" type="integer" min="1" max="65535">
<label>Block Length</label>
<description>Length of the model block in 2 byte words</description>
<default>61</default>
<advanced>true</advanced>
</parameter>
<parameter name="maxTries" type="integer" min="1">
<label>Maximum Tries When Reading</label>
<default>3</default>
<description>Number of tries when reading data, if some of the reading fail. For single try, enter 1.</description>
<advanced>true</advanced>
</parameter>
</config-description>
</config-description:config-descriptions>

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="modbus"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<channel-group-type id="device-information">
<label>Device Information</label>
<channels>
<channel id="cabinet-temperature" typeId="cabinet-temperature-type"/>
<channel id="heatsink-temperature" typeId="heatsink-temperature-type"/>
<channel id="transformer-temperature" typeId="transformer-temperature-type"/>
<channel id="other-temperature" typeId="other-temperature-type"/>
<channel id="status" typeId="status-type"/>
</channels>
</channel-group-type>
<channel-group-type id="ac-general">
<label>AC Summary</label>
<channels>
<channel id="ac-total-current" typeId="ac-total-current-type"/>
<channel id="ac-power" typeId="ac-power-type"/>
<channel id="ac-frequency" typeId="ac-frequency-type"/>
<channel id="ac-apparent-power" typeId="ac-apparent-power-type"/>
<channel id="ac-reactive-power" typeId="ac-reactive-power-type"/>
<channel id="ac-power-factor" typeId="ac-power-factor-type"/>
<channel id="ac-lifetime-energy" typeId="ac-lifetime-energy-type"/>
</channels>
</channel-group-type>
<channel-group-type id="ac-phase">
<label>AC Phase</label>
<channels>
<channel id="ac-phase-current" typeId="ac-phase-current-type"/>
<channel id="ac-voltage-to-next" typeId="ac-voltage-to-next-type"/>
<channel id="ac-voltage-to-n" typeId="ac-voltage-to-n-type"/>
</channels>
</channel-group-type>
<channel-group-type id="dc-general">
<label>DC summary</label>
<channels>
<channel id="dc-current" typeId="dc-current-type"/>
<channel id="dc-voltage" typeId="dc-voltage-type"/>
<channel id="dc-power" typeId="dc-power-type"/>
</channels>
</channel-group-type>
</thing:thing-descriptions>

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="modbus"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<channel-type id="ac-total-current-type">
<item-type>Number:ElectricCurrent</item-type>
<label>AC Total Current Value</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="ac-phase-current-type">
<item-type>Number:ElectricCurrent</item-type>
<label>AC Phase Current Value</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="ac-voltage-to-next-type">
<item-type>Number:ElectricPotential</item-type>
<label>AC Voltage</label>
<description>This phase's AC voltage relative to the next phase</description>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-voltage-to-n-type">
<item-type>Number:ElectricPotential</item-type>
<label>AC Voltage Phase To N Value</label>
<description>This phase's AC voltage relative to N line</description>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-power-type">
<item-type>Number:Power</item-type>
<label>AC Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-frequency-type">
<item-type>Number:Frequency</item-type>
<label>AC Frequency Value</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="ac-apparent-power-type" advanced="true">
<item-type>Number:Power</item-type>
<label>AC Apparent Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-reactive-power-type" advanced="true">
<item-type>Number:Power</item-type>
<label>AC Reactive Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-power-factor-type">
<item-type>Number:Dimensionless</item-type>
<label>AC Power Factor</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="ac-lifetime-energy-type">
<item-type>Number:Energy</item-type>
<label>AC Lifetime Energy Production</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="dc-current-type">
<item-type>Number:ElectricCurrent</item-type>
<label>DC Current Value</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="dc-voltage-type">
<item-type>Number:ElectricPotential</item-type>
<label>DC Voltage Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="dc-power-type">
<item-type>Number:Power</item-type>
<label>DC Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="cabinet-temperature-type">
<item-type>Number:Temperature</item-type>
<label>Cabinet Temperature</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="heatsink-temperature-type">
<item-type>Number:Temperature</item-type>
<label>Heat Sink Temperature</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="transformer-temperature-type">
<item-type>Number:Temperature</item-type>
<label>Transformer Temperature</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="other-temperature-type">
<item-type>Number:Temperature</item-type>
<label>Other Temperature</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="status-type">
<item-type>String</item-type>
<label>Status</label>
<description>Device status</description>
<state readOnly="true">
<options>
<option value="OFF">Off</option>
<option value="SLEEP">Sleeping / Night mode</option>
<option value="ON">On - producing power</option>
</options>
</state>
</channel-type>
</thing:thing-descriptions>

View File

@@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="modbus"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<thing-type id="inverter-single-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Single Phase Inverter</label>
<description>Single phase inverter supporting SunSpec mapping over tcp modbus connection.</description>
<category>Inverter</category>
<channel-groups>
<channel-group id="deviceInformation" typeId="device-information"/>
<channel-group id="acGeneral" typeId="ac-general"/>
<channel-group id="acPhaseA" typeId="ac-phase">
<label>AC Detail</label>
</channel-group>
<channel-group id="dcGeneral" typeId="dc-general"/>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
<thing-type id="inverter-split-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Split Phase Inverter</label>
<description>Split phase (Japanese grid and 240V grid in North America) inverter supporting SunSpec mapping over tcp
modbus connection</description>
<category>Inverter</category>
<channel-groups>
<channel-group id="deviceInformation" typeId="device-information"/>
<channel-group id="acGeneral" typeId="ac-general"/>
<channel-group id="acPhaseA" typeId="ac-phase">
<label>AC Phase A (L1)</label>
</channel-group>
<channel-group id="acPhaseB" typeId="ac-phase">
<label>AC Phase B (L2)</label>
</channel-group>
<channel-group id="dcGeneral" typeId="dc-general"/>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
<thing-type id="inverter-three-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Three Phase Inverter</label>
<description>Three phase inverter supporting SunSpec mapping over tcp modbus connection</description>
<category>Inverter</category>
<channel-groups>
<channel-group id="deviceInformation" typeId="device-information"/>
<channel-group id="acGeneral" typeId="ac-general"/>
<channel-group id="acPhaseA" typeId="ac-phase">
<label>AC Phase A (L1)</label>
</channel-group>
<channel-group id="acPhaseB" typeId="ac-phase">
<label>AC Phase B (L2)</label>
</channel-group>
<channel-group id="acPhaseC" typeId="ac-phase">
<label>AC Phase C (L3)</label>
</channel-group>
<channel-group id="dcGeneral" typeId="dc-general"/>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
</thing:thing-descriptions>

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="modbus"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<channel-group-type id="meter-ac-general">
<label>Summary</label>
<channels>
<channel id="ac-total-current" typeId="ac-total-current-type"/>
<channel id="ac-average-voltage-to-n" typeId="ac-average-voltage-to-n-type"/>
<channel id="ac-average-voltage-to-next" typeId="ac-average-voltage-to-next-type"/>
<channel id="ac-frequency" typeId="ac-frequency-type"/>
<channel id="ac-total-real-power" typeId="ac-total-real-power-type"/>
<channel id="ac-total-apparent-power" typeId="ac-total-apparent-power-type"/>
<channel id="ac-total-reactive-power" typeId="ac-total-reactive-power-type"/>
<channel id="ac-average-power-factor" typeId="ac-average-power-factor-type"/>
<channel id="ac-total-exported-real-energy" typeId="ac-total-exported-real-energy-type"/>
<channel id="ac-total-imported-real-energy" typeId="ac-total-imported-real-energy-type"/>
<channel id="ac-total-exported-apparent-energy" typeId="ac-total-exported-apparent-energy-type"/>
<channel id="ac-total-imported-apparent-energy" typeId="ac-total-imported-apparent-energy-type"/>
<channel id="ac-total-imported-reactive-energy-q1" typeId="ac-total-imported-reactive-energy-q1-type"/>
<channel id="ac-total-imported-reactive-energy-q2" typeId="ac-total-imported-reactive-energy-q2-type"/>
<channel id="ac-total-exported-reactive-energy-q3" typeId="ac-total-exported-reactive-energy-q3-type"/>
<channel id="ac-total-exported-reactive-energy-q4" typeId="ac-total-exported-reactive-energy-q4-type"/>
</channels>
</channel-group-type>
<channel-group-type id="meter-ac-phase">
<label>Phase</label>
<channels>
<channel id="ac-phase-current" typeId="ac-phase-current-type"/>
<channel id="ac-voltage-to-n" typeId="ac-voltage-to-n-type"/>
<channel id="ac-voltage-to-next" typeId="ac-voltage-to-next-type"/>
<channel id="ac-real-power" typeId="ac-real-power-type"/>
<channel id="ac-apparent-power" typeId="ac-apparent-power-type"/>
<channel id="ac-reactive-power" typeId="ac-reactive-power-type"/>
<channel id="ac-power-factor" typeId="ac-power-factor-type"/>
<channel id="ac-exported-real-energy" typeId="ac-exported-real-energy-type"/>
<channel id="ac-imported-real-energy" typeId="ac-imported-real-energy-type"/>
<channel id="ac-exported-apparent-energy" typeId="ac-exported-apparent-energy-type"/>
<channel id="ac-imported-apparent-energy" typeId="ac-imported-apparent-energy-type"/>
<channel id="ac-imported-reactive-energy-q1" typeId="ac-imported-reactive-energy-q1-type"/>
<channel id="ac-imported-reactive-energy-q2" typeId="ac-imported-reactive-energy-q2-type"/>
<channel id="ac-exported-reactive-energy-q3" typeId="ac-exported-reactive-energy-q3-type"/>
<channel id="ac-exported-reactive-energy-q4" typeId="ac-exported-reactive-energy-q4-type"/>
</channels>
</channel-group-type>
</thing:thing-descriptions>

View File

@@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="modbus"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<channel-type id="ac-average-voltage-to-n-type">
<item-type>Number:ElectricPotential</item-type>
<label>Average Line To Neutral AC Voltage</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-average-voltage-to-next-type">
<item-type>Number:ElectricPotential</item-type>
<label>Average Line To Line AC Voltage</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-real-power-type">
<item-type>Number:Power</item-type>
<label>Total Real Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-real-power-type">
<item-type>Number:Power</item-type>
<label>AC Real Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-apparent-power-type">
<item-type>Number:Power</item-type>
<label>Total Apparent Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-reactive-power-type">
<item-type>Number:Power</item-type>
<label>Total Reactive Power Value</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-average-power-factor-type">
<item-type>Number:Dimensionless</item-type>
<label>Average AC Power Factor</label>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
<channel-type id="ac-total-exported-real-energy-type">
<item-type>Number:Energy</item-type>
<label>Total Real Energy Exported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-exported-real-energy-type">
<item-type>Number:Energy</item-type>
<label>Real Energy Exported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-imported-real-energy-type">
<item-type>Number:Energy</item-type>
<label>Total Real Energy Imported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-imported-real-energy-type">
<item-type>Number:Energy</item-type>
<label>Real Energy Imported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-exported-apparent-energy-type">
<item-type>Number:Energy</item-type>
<label>Total Apparent Energy Exported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-exported-apparent-energy-type">
<item-type>Number:Energy</item-type>
<label>Apparent Energy Exported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-imported-apparent-energy-type">
<item-type>Number:Energy</item-type>
<label>Total Apparent Energy Imported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-imported-apparent-energy-type">
<item-type>Number:Energy</item-type>
<label>Apparent Energy Imported</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-imported-reactive-energy-q1-type">
<item-type>Number:Energy</item-type>
<label>Total Reactive Energy Imported Quadrant 1</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-imported-reactive-energy-q1-type">
<item-type>Number:Energy</item-type>
<label>Reactive Energy Imported Quadrant 1</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-imported-reactive-energy-q2-type">
<item-type>Number:Energy</item-type>
<label>Total Reactive Energy Imported Quadrant 2</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-imported-reactive-energy-q2-type">
<item-type>Number:Energy</item-type>
<label>Reactive Energy Imported Quadrant 2</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-exported-reactive-energy-q3-type">
<item-type>Number:Energy</item-type>
<label>Total Reactive Energy Exported Quadrant 3</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-exported-reactive-energy-q3-type">
<item-type>Number:Energy</item-type>
<label>Reactive Energy Exported Quadrant 3</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-total-exported-reactive-energy-q4-type">
<item-type>Number:Energy</item-type>
<label>Total Reactive Energy Exported Quadrant 4</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
<channel-type id="ac-exported-reactive-energy-q4-type">
<item-type>Number:Energy</item-type>
<label>Reactive Energy Exported Quadrant 4</label>
<state readOnly="true" pattern="%d %unit%"/>
</channel-type>
</thing:thing-descriptions>

View File

@@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="modbus"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<thing-type id="meter-single-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Single Phase Meter</label>
<description>Single phase (AN or AB) meter supporting SunSpec mapping over modbus connection</description>
<category>Meter</category>
<channel-groups>
<channel-group id="acGeneral" typeId="meter-ac-general"/>
<channel-group id="acPhaseA" typeId="meter-ac-phase">
<label>AC Phase A</label>
</channel-group>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
<thing-type id="meter-split-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Split Phase Meter</label>
<description>Split phase (ABN) meter supporting SunSpec mapping over modbus connection</description>
<category>Meter</category>
<channel-groups>
<channel-group id="acGeneral" typeId="meter-ac-general"/>
<channel-group id="acPhaseA" typeId="meter-ac-phase">
<label>AC Phase A</label>
</channel-group>
<channel-group id="acPhaseB" typeId="meter-ac-phase">
<label>AC Phase B</label>
</channel-group>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
<thing-type id="meter-wye-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Three Phase Meter, Wye-Connected</label>
<description>Wye-connected three phase (ABCN) meter supporting SunSpec mapping over modbus connection</description>
<category>Meter</category>
<channel-groups>
<channel-group id="acGeneral" typeId="meter-ac-general"/>
<channel-group id="acPhaseA" typeId="meter-ac-phase">
<label>AC Phase A</label>
</channel-group>
<channel-group id="acPhaseB" typeId="meter-ac-phase">
<label>AC Phase B</label>
</channel-group>
<channel-group id="acPhaseC" typeId="meter-ac-phase">
<label>AC Phase C</label>
</channel-group>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
<thing-type id="meter-delta-phase">
<supported-bridge-type-refs>
<bridge-type-ref id="tcp"/>
<bridge-type-ref id="serial"/>
</supported-bridge-type-refs>
<label>Three Phase Meter, Delta-Connected</label>
<description>Delta-connected three phase (ABC) meter supporting SunSpec mapping over modbus connection</description>
<category>Meter</category>
<channel-groups>
<channel-group id="acGeneral" typeId="meter-ac-general"/>
<channel-group id="acPhaseA" typeId="meter-ac-phase">
<label>AC Phase A</label>
</channel-group>
<channel-group id="acPhaseB" typeId="meter-ac-phase">
<label>AC Phase B</label>
</channel-group>
<channel-group id="acPhaseC" typeId="meter-ac-phase">
<label>AC Phase C</label>
</channel-group>
</channel-groups>
<properties>
<property name="vendor"/>
<property name="model"/>
<property name="version"/>
<property name="serialNumber"/>
<property name="uniqueAddress"/>
</properties>
<representation-property>uniqueAddress</representation-property>
<config-description-ref uri="thing-type:sunspec:modbusconfig"/>
</thing-type>
</thing:thing-descriptions>