Skip to content

Commit

Permalink
renamed Goodwe HV to Goodwe
Browse files Browse the repository at this point in the history
  • Loading branch information
ai-republic committed Dec 27, 2024
1 parent 41435bc commit 70c6b53
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bms-to-inverter-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
<!-- #################### GOODWE HV (CAN) ################### -->
<dependency>
<groupId>com.ai-republic.bms-to-inverter</groupId>
<artifactId>inverter-goodwe-hv-can</artifactId>
<artifactId>inverter-goodwe-can</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
<!-- #################### GOODWE HV (CAN) ################### -->
<dependency>
<groupId>com.ai-republic.bms-to-inverter</groupId>
<artifactId>inverter-goodwe-hv-can</artifactId>
<artifactId>inverter-goodwe-can</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
com.airepublic.bmstoinverter.inverter.dummy.DummyInverterDescriptor
com.airepublic.bmstoinverter.inverter.deye.can.DeyeInverterCANDescriptor
com.airepublic.bmstoinverter.inverter.huawei.modbus.HuaweiInverterModbusDescriptor
com.airepublic.bmstoinverter.inverter.goodwehv.can.GoodweHVInverterCANDescriptor
com.airepublic.bmstoinverter.inverter.goodwe.can.GoodweInverterCANDescriptor
com.airepublic.bmstoinverter.inverter.growatt.can.GrowattInverterCANDescriptor
com.airepublic.bmstoinverter.inverter.growatt.modbus.GrowattInverterModbusDescriptor
com.airepublic.bmstoinverter.inverter.pylon.can.PylonInverterCANDescriptor
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>inverter-goodwe-hv-can</artifactId>
<artifactId>inverter-goodwe-can</artifactId>

<name>${project.artifactId}-${project.version}</name>
<description>Module for the Goodwe HV inverter CAN support</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @author Torsten Oltmanns - bms-to-inverter''AT''gmail.com
*/
package com.airepublic.bmstoinverter.inverter.goodwehv.can;
package com.airepublic.bmstoinverter.inverter.goodwe.can;

import com.airepublic.bmstoinverter.core.Inverter;
import com.airepublic.bmstoinverter.core.InverterConfig;
Expand All @@ -19,10 +19,10 @@
/**
* The {@link InverterDescriptor} for the Goodwe HV {@link Inverter} using the CAN protocol.
*/
public class GoodweHVInverterCANDescriptor implements InverterDescriptor {
public class GoodweInverterCANDescriptor implements InverterDescriptor {
@Override
public String getName() {
return "GOODWE_HV_CAN";
return "GOODWE_CAN";
}


Expand All @@ -34,7 +34,7 @@ public int getDefaultBaudRate() {

@Override
public Class<? extends Inverter> getInverterClass() {
return GoodweHVInverterCANProcessor.class;
return GoodweInverterCANProcessor.class;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @author Torsten Oltmanns - bms-to-inverter''AT''gmail.com
*/
package com.airepublic.bmstoinverter.inverter.goodwehv.can;
package com.airepublic.bmstoinverter.inverter.goodwe.can;

import java.io.IOException;
import java.nio.ByteBuffer;
Expand All @@ -32,8 +32,8 @@
* The class to handle CAN messages for a Goodwe HV {@link Inverter}.
*/
@ApplicationScoped
public class GoodweHVInverterCANProcessor extends Inverter {
private final static Logger LOG = LoggerFactory.getLogger(GoodweHVInverterCANProcessor.class);
public class GoodweInverterCANProcessor extends Inverter {
private final static Logger LOG = LoggerFactory.getLogger(GoodweInverterCANProcessor.class);

@Override
protected List<ByteBuffer> createSendFrames(final ByteBuffer requestFrame, final BatteryPack aggregatedPack) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.airepublic.bmstoinverter.inverter.goodwe.can.GoodweInverterCANDescriptor

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<module>bms-to-inverter-main</module>
<module>inverter-deye-can</module>
<module>inverter-dummy</module>
<module>inverter-goodwe-hv-can</module>
<module>inverter-goodwe-can</module>
<module>inverter-growatt-can</module>
<module>inverter-growatt-modbus</module>
<module>inverter-growatt-rs485</module>
Expand Down

0 comments on commit 70c6b53

Please sign in to comment.