-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
107 changed files
with
4,429 additions
and
1,957 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
io.openems.edge.controller.chp.soc/src/io/openems/edge/controller/chp/soc/Mode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package io.openems.edge.controller.chp.soc; | ||
|
||
import io.openems.common.types.OptionsEnum; | ||
|
||
public enum Mode implements OptionsEnum { | ||
MANUAL_ON(0, "Manual control for the ON signal"), // | ||
MANUAL_OFF(1, "Manual control for the OFF signal"), // | ||
AUTOMATIC(2, "Automatic control"); // | ||
|
||
private final int value; | ||
private final String name; | ||
|
||
private Mode(int value, String name) { | ||
this.value = value; | ||
this.name = name; | ||
} | ||
|
||
@Override | ||
public int getValue() { | ||
return value; | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
@Override | ||
public OptionsEnum getUndefined() { | ||
return AUTOMATIC; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 0 additions & 23 deletions
23
io.openems.edge.controller.dischargelimitconsideringcellvoltage/.project
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
io.openems.edge.controller.dischargelimitconsideringcellvoltage/readme.adoc
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
...llvoltage/src/io/openems/edge/controller/dischargelimitconsideringcellvoltage/Config.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.