Package io.openems.edge.io.revpi
Class RevPiDigitalIoDevice
- java.lang.Object
-
- io.openems.edge.common.component.AbstractOpenemsComponent
-
- io.openems.edge.io.revpi.RevPiDigitalIoDevice
-
- All Implemented Interfaces:
OpenemsComponent
,DigitalInput
,DigitalOutput
,org.osgi.service.event.EventHandler
public class RevPiDigitalIoDevice extends AbstractOpenemsComponent implements DigitalOutput, DigitalInput, OpenemsComponent, org.osgi.service.event.EventHandler
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.openems.edge.io.api.DigitalInput
DigitalInput.ChannelId
-
Nested classes/interfaces inherited from interface io.openems.edge.io.api.DigitalOutput
DigitalOutput.ChannelId
-
Nested classes/interfaces inherited from interface io.openems.edge.common.component.OpenemsComponent
OpenemsComponent.ChannelId
-
-
Constructor Summary
Constructors Constructor Description RevPiDigitalIoDevice()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
deactivate()
Handles @Deactivate of implementations.java.lang.String
debugLog()
Gets some output that is suitable for a continuous Debug log.BooleanReadChannel[]
digitalInputChannels()
Gets all Output Channels.BooleanWriteChannel[]
digitalOutputChannels()
Gets all Output Channels.void
handleEvent(org.osgi.service.event.Event event)
-
Methods inherited from class io.openems.edge.common.component.AbstractOpenemsComponent
_channel, activate, activate, addChannel, addChannels, addChannels, alias, channels, getComponentContext, id, isEnabled, logDebug, logError, logInfo, logWarn, modified, removeChannel
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.openems.edge.common.component.OpenemsComponent
_channel, _getChannelAs, alias, channel, channel, channels, getComponentContext, getState, getStateChannel, hasFaults, id, isEnabled, serviceFactoryPid, servicePid
-
-
-
-
Method Detail
-
deactivate
protected void deactivate()
Description copied from class:AbstractOpenemsComponent
Handles @Deactivate of implementations. Prints log output.- Overrides:
deactivate
in classAbstractOpenemsComponent
-
handleEvent
public void handleEvent(org.osgi.service.event.Event event)
- Specified by:
handleEvent
in interfaceorg.osgi.service.event.EventHandler
-
debugLog
public java.lang.String debugLog()
Description copied from interface:OpenemsComponent
Gets some output that is suitable for a continuous Debug log. Returns 'null' by default which causes no output.- Specified by:
debugLog
in interfaceOpenemsComponent
- Returns:
- the debug log output
-
digitalInputChannels
public BooleanReadChannel[] digitalInputChannels()
Description copied from interface:DigitalInput
Gets all Output Channels.- Specified by:
digitalInputChannels
in interfaceDigitalInput
- Returns:
- array of
BooleanReadChannel
-
digitalOutputChannels
public BooleanWriteChannel[] digitalOutputChannels()
Description copied from interface:DigitalOutput
Gets all Output Channels.- Specified by:
digitalOutputChannels
in interfaceDigitalOutput
- Returns:
- an array of Channels
-
-