Package io.openems.edge.evcs.api
Enum ManagedEvcs.ChannelId
- java.lang.Object
-
- java.lang.Enum<ManagedEvcs.ChannelId>
-
- io.openems.edge.evcs.api.ManagedEvcs.ChannelId
-
- All Implemented Interfaces:
ChannelId
,java.io.Serializable
,java.lang.Comparable<ManagedEvcs.ChannelId>
- Enclosing interface:
- ManagedEvcs
public static enum ManagedEvcs.ChannelId extends java.lang.Enum<ManagedEvcs.ChannelId> implements ChannelId
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARGE_MODE
Which mode is used to set a charge power.CHARGE_STATE
Charge Status.IS_CLUSTERED
Is true if the EVCS is in a EVCS-Cluster.POWER_PRECISION
Gets the smallest power steps that can be set (given in W).SET_CHARGE_POWER_LIMIT
Sets the charge power limit of the EVCS in [W].SET_CHARGE_POWER_LIMIT_WITH_FILTER
Applies the configured filter inEvcsPowerComponent
and sets a the charge power limit.SET_CHARGE_POWER_REQUEST
Sets a request for a charge power.SET_DISPLAY_TEXT
Sets a Text that is shown on the display of the EVCS.SET_ENERGY_LIMIT
Sets the energy limit for the current or next session in [Wh].
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Doc
doc()
Gets the Channel Doc for this ChannelId.static ManagedEvcs.ChannelId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ManagedEvcs.ChannelId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POWER_PRECISION
public static final ManagedEvcs.ChannelId POWER_PRECISION
Gets the smallest power steps that can be set (given in W).Example:
- KEBA-series allows setting of milli Ampere. It should return 0.23 W (0.001A * 230V).
- Hardy Barth allows setting in Ampere. It should return 230 W (1A * 230V).
- Interface: ManagedEvcs
- Writable
- Type: Integer
- Unit: W
-
SET_CHARGE_POWER_LIMIT
public static final ManagedEvcs.ChannelId SET_CHARGE_POWER_LIMIT
Sets the charge power limit of the EVCS in [W].Actual charge power depends on
- whether the electric vehicle is connected at all and ready for charging
- hardware limit of the charging station
- limit of electric vehicle
- limit of power line
- ...
Function:
- Write Value should be sent to the EVCS and cleared afterwards
- Read value should contain the currently valid loading target that was sent
- Interface: ManagedEvcs
- Writable
- Type: Integer
- Unit: W
-
SET_CHARGE_POWER_LIMIT_WITH_FILTER
public static final ManagedEvcs.ChannelId SET_CHARGE_POWER_LIMIT_WITH_FILTER
Applies the configured filter inEvcsPowerComponent
and sets a the charge power limit.The Filter is not used, when the limit is lower or equals the last limit.
- Interface: ManagedEvcs
- Writable
- Type: Integer
- Unit: W
-
IS_CLUSTERED
public static final ManagedEvcs.ChannelId IS_CLUSTERED
Is true if the EVCS is in a EVCS-Cluster.- Interface: ManagedEvcs
- Readable
- Type: Boolean
-
CHARGE_MODE
public static final ManagedEvcs.ChannelId CHARGE_MODE
Which mode is used to set a charge power.Set internally by a controller. Used to prioritize between several evcs.
- Interface: ManagedEvcs
- Readable
- Type: ChargeMode
-
SET_DISPLAY_TEXT
public static final ManagedEvcs.ChannelId SET_DISPLAY_TEXT
Sets a Text that is shown on the display of the EVCS.Be aware that the EVCS might not have a display or the text might be restricted.
- Interface: ManagedEvcs
- Writable
- Type: String
-
SET_CHARGE_POWER_REQUEST
public static final ManagedEvcs.ChannelId SET_CHARGE_POWER_REQUEST
Sets a request for a charge power. The limit is not directly activated by this call.- Interface: ManagedEvcs
- Writable
- Type: Integer
- Unit: W
-
SET_ENERGY_LIMIT
public static final ManagedEvcs.ChannelId SET_ENERGY_LIMIT
Sets the energy limit for the current or next session in [Wh].- Interface: ManagedEvcs
- Writable
- Type: Integer
- Unit: Wh
-
CHARGE_STATE
public static final ManagedEvcs.ChannelId CHARGE_STATE
Charge Status.The Charge Status of the EVCS charging station. This is set by the ManagedEvcs.
- Interface: Evcs
- Readable
- Type:
ChargeState
-
-
Method Detail
-
values
public static ManagedEvcs.ChannelId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ManagedEvcs.ChannelId c : ManagedEvcs.ChannelId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagedEvcs.ChannelId valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-