diff --git a/bundles/org.openhab.binding.modbus.sungrow/src/main/java/org/openhab/binding/modbus/sungrow/internal/SungrowInverterRegisters.java b/bundles/org.openhab.binding.modbus.sungrow/src/main/java/org/openhab/binding/modbus/sungrow/internal/SungrowInverterRegisters.java index f8d66205fa972..3b9b1da094f9e 100644 --- a/bundles/org.openhab.binding.modbus.sungrow/src/main/java/org/openhab/binding/modbus/sungrow/internal/SungrowInverterRegisters.java +++ b/bundles/org.openhab.binding.modbus.sungrow/src/main/java/org/openhab/binding/modbus/sungrow/internal/SungrowInverterRegisters.java @@ -45,10 +45,10 @@ public enum SungrowInverterRegisters { INTERNAL_TEMPERATURE(5008, INT16, 0.1f, quantityFactory(Units.KELVIN), ConversionConstants.CELSIUS_TO_KELVIN, "overview"), - MPPT1_VOLTAGE(5011, UINT16, 0.1f, quantityFactory(Units.VOLT), "mppt_information"), - MPPT1_CURRENT(5012, UINT16, 0.1f, quantityFactory(Units.AMPERE), "mppt_information"), - MPPT2_VOLTAGE(5013, UINT16, 0.1f, quantityFactory(Units.VOLT), "mppt_information"), - MPPT2_CURRENT(5014, UINT16, 0.1f, quantityFactory(Units.AMPERE), "mppt_information"), + MPPT1_VOLTAGE(5011, UINT16, 0.1f, quantityFactory(Units.VOLT), "mppt-information"), + MPPT1_CURRENT(5012, UINT16, 0.1f, quantityFactory(Units.AMPERE), "mppt-information"), + MPPT2_VOLTAGE(5013, UINT16, 0.1f, quantityFactory(Units.VOLT), "mppt-information"), + MPPT2_CURRENT(5014, UINT16, 0.1f, quantityFactory(Units.AMPERE), "mppt-information"), TOTAL_DC_POWER(5017, UINT32_SWAP, 1, quantityFactory(Units.WATT), "overview"), PHASE_A_VOLTAGE(5019, UINT16, 0.1f, quantityFactory(Units.VOLT), "overview"), PHASE_B_VOLTAGE(5020, UINT16, 0.1f, quantityFactory(Units.VOLT), "overview"), @@ -95,7 +95,7 @@ public enum SungrowInverterRegisters { BATTERY_POWER(13022, UINT16, 1, quantityFactory(Units.WATT), "battery-information"), BATTERY_LEVEL(13023, UINT16, 0.1f, PercentType::new, "battery-information"), BATTERY_HEALTHY(13024, UINT16, 0.1f, PercentType::new, "battery-information"), - BATTERY_TEMPERATUR(13025, INT16, 0.1f, quantityFactory(Units.KELVIN), ConversionConstants.CELSIUS_TO_KELVIN, + BATTERY_TEMPERATURE(13025, INT16, 0.1f, quantityFactory(Units.KELVIN), ConversionConstants.CELSIUS_TO_KELVIN, "battery-information"), DAILY_BATTERY_DISCHARGE_ENERGY(13026, UINT16, 0.1f, quantityFactory(Units.KILOWATT_HOUR), "battery-information"), TOTAL_BATTERY_DISCHARGE_ENERGY(13027, UINT32_SWAP, 0.1f, quantityFactory(Units.KILOWATT_HOUR),