Package io.openems.edge.meter.plexlog
Interface PlexlogDatalogger
-
- All Superinterfaces:
ModbusComponent
,OpenemsComponent
,SymmetricMeter
- All Known Implementing Classes:
PlexlogDataloggerImpl
public interface PlexlogDatalogger extends SymmetricMeter, ModbusComponent, OpenemsComponent
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PlexlogDatalogger.ChannelId
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Value<java.lang.Integer>
getConsumptionExponent()
Gets the Consumption Exponent.default IntegerReadChannel
getConsumptionExponentChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.CONSUMPTION_EXPONENT
.default Value<java.lang.Integer>
getProductionExponent()
Gets the Production Exponent.default IntegerReadChannel
getProductionExponentChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.PRODUCTION_EXPONENT
.default Value<java.lang.Integer>
getTotalConsumption()
Gets the Total Consumption in [Wh].default IntegerReadChannel
getTotalConsumptionChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.TOTAL_CONSUMPTION
.default Value<java.lang.Integer>
getTotalProduction()
Gets the Total Production in [Wh].default IntegerReadChannel
getTotalProductionChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.TOTAL_PRODUCTION
.-
Methods inherited from interface io.openems.edge.bridge.modbus.api.ModbusComponent
_setModbusCommunicationFailed, getModbusCommunicationFailed, getModbusCommunicationFailedChannel
-
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
-
Methods inherited from interface io.openems.edge.meter.api.SymmetricMeter
_setActiveConsumptionEnergy, _setActiveConsumptionEnergy, _setActivePower, _setActivePower, _setActiveProductionEnergy, _setActiveProductionEnergy, _setCurrent, _setCurrent, _setFrequency, _setFrequency, _setMaxActivePower, _setMaxActivePower, _setMinActivePower, _setMinActivePower, _setReactivePower, _setReactivePower, _setVoltage, _setVoltage, getActiveConsumptionEnergy, getActiveConsumptionEnergyChannel, getActivePower, getActivePowerChannel, getActiveProductionEnergy, getActiveProductionEnergyChannel, getCurrent, getCurrentChannel, getFrequency, getFrequencyChannel, getMaxActivePower, getMaxActivePowerChannel, getMeterType, getMinActivePower, getMinActivePowerChannel, getReactivePower, getReactivePowerChannel, getVoltage, getVoltageChannel
-
-
-
-
Method Detail
-
getConsumptionExponent
default Value<java.lang.Integer> getConsumptionExponent()
Gets the Consumption Exponent. SeePlexlogDatalogger.ChannelId.CONSUMPTION_EXPONENT
.- Returns:
- the Channel
Value
-
getConsumptionExponentChannel
default IntegerReadChannel getConsumptionExponentChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.CONSUMPTION_EXPONENT
.- Returns:
- the Channel
-
getProductionExponent
default Value<java.lang.Integer> getProductionExponent()
Gets the Production Exponent. SeePlexlogDatalogger.ChannelId.PRODUCTION_EXPONENT
.- Returns:
- the Channel
Value
-
getProductionExponentChannel
default IntegerReadChannel getProductionExponentChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.PRODUCTION_EXPONENT
.- Returns:
- the Channel
-
getTotalConsumption
default Value<java.lang.Integer> getTotalConsumption()
Gets the Total Consumption in [Wh]. SeePlexlogDatalogger.ChannelId.TOTAL_CONSUMPTION
.- Returns:
- the Channel
Value
-
getTotalConsumptionChannel
default IntegerReadChannel getTotalConsumptionChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.TOTAL_CONSUMPTION
.- Returns:
- the Channel
-
getTotalProduction
default Value<java.lang.Integer> getTotalProduction()
Gets the Total Production in [Wh]. SeePlexlogDatalogger.ChannelId.TOTAL_PRODUCTION
.- Returns:
- the Channel
Value
-
getTotalProductionChannel
default IntegerReadChannel getTotalProductionChannel()
Gets the Channel forPlexlogDatalogger.ChannelId.TOTAL_PRODUCTION
.- Returns:
- the Channel
-
-