Interface LimitTotalDischargeController
-
- All Superinterfaces:
Controller
,OpenemsComponent
- All Known Implementing Classes:
LimitTotalDischargeControllerImpl
public interface LimitTotalDischargeController extends Controller, OpenemsComponent
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
LimitTotalDischargeController.ChannelId
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
_setAwaitingHysteresisValue(boolean value)
Internal method to set the 'nextValue' onLimitTotalDischargeController.ChannelId.AWAITING_HYSTERESIS
Channel.default void
_setMinSoc(java.lang.Integer value)
Internal method to set the 'nextValue' onLimitTotalDischargeController.ChannelId.MIN_SOC
Channel.default StateChannel
getAwaitingHysteresisChannel()
Gets the Channel forLimitTotalDischargeController.ChannelId.AWAITING_HYSTERESIS
.default Value<java.lang.Integer>
getMinSoc()
Gets the minimum SoC value configured.default IntegerReadChannel
getMinSocChannel()
Gets the Channel forLimitTotalDischargeController.ChannelId.MIN_SOC
.-
Methods inherited from interface io.openems.edge.controller.api.Controller
_setRunFailed, getRunFailed, getRunFailedChannel, run
-
Methods inherited from interface io.openems.edge.common.component.OpenemsComponent
_channel, _getChannelAs, alias, channel, channel, channels, debugLog, getComponentContext, getState, getStateChannel, hasFaults, id, isEnabled, serviceFactoryPid, servicePid
-
-
-
-
Method Detail
-
getAwaitingHysteresisChannel
default StateChannel getAwaitingHysteresisChannel()
Gets the Channel forLimitTotalDischargeController.ChannelId.AWAITING_HYSTERESIS
.- Returns:
- the Channel
-
_setAwaitingHysteresisValue
default void _setAwaitingHysteresisValue(boolean value)
Internal method to set the 'nextValue' onLimitTotalDischargeController.ChannelId.AWAITING_HYSTERESIS
Channel.- Parameters:
value
- the next value
-
getMinSocChannel
default IntegerReadChannel getMinSocChannel()
Gets the Channel forLimitTotalDischargeController.ChannelId.MIN_SOC
.- Returns:
- the Channel
-
_setMinSoc
default void _setMinSoc(java.lang.Integer value)
Internal method to set the 'nextValue' onLimitTotalDischargeController.ChannelId.MIN_SOC
Channel.- Parameters:
value
- the next value
-
getMinSoc
default Value<java.lang.Integer> getMinSoc()
Gets the minimum SoC value configured. SeeLimitTotalDischargeController.ChannelId.MIN_SOC
.- Returns:
- the Channel
Value
-
-