Uses of Interface
com.pi4j.io.gpio.event.GpioPinListener
-
Packages that use GpioPinListener Package Description com.pi4j.io.gpio com.pi4j.io.gpio.event com.pi4j.io.gpio.impl -
-
Uses of GpioPinListener in com.pi4j.io.gpio
Methods in com.pi4j.io.gpio that return types with arguments of type GpioPinListener Modifier and Type Method Description Collection<GpioPinListener>
GpioPin. getListeners()
Collection<GpioPinListener>
GpioPinAnalogInput. getListeners()
Methods in com.pi4j.io.gpio with parameters of type GpioPinListener Modifier and Type Method Description void
GpioController. addListener(GpioPinListener[] listeners, GpioPinInput... pin)
void
GpioController. addListener(GpioPinListener listener, GpioPinInput... pin)
void
GpioPin. addListener(GpioPinListener... listener)
void
GpioPinAnalogInput. addListener(GpioPinListener... listener)
boolean
GpioPin. hasListener(GpioPinListener... listener)
boolean
GpioPinAnalogInput. hasListener(GpioPinListener... listener)
void
GpioController. removeListener(GpioPinListener[] listeners, GpioPinInput... pin)
void
GpioController. removeListener(GpioPinListener listener, GpioPinInput... pin)
void
GpioPin. removeListener(GpioPinListener... listener)
void
GpioPinAnalogInput. removeListener(GpioPinListener... listener)
Method parameters in com.pi4j.io.gpio with type arguments of type GpioPinListener Modifier and Type Method Description void
GpioPin. addListener(List<? extends GpioPinListener> listeners)
void
GpioPinAnalogInput. addListener(List<? extends GpioPinListener> listeners)
void
GpioPin. removeListener(List<? extends GpioPinListener> listeners)
void
GpioPinAnalogInput. removeListener(List<? extends GpioPinListener> listeners)
-
Uses of GpioPinListener in com.pi4j.io.gpio.event
Subinterfaces of GpioPinListener in com.pi4j.io.gpio.event Modifier and Type Interface Description interface
GpioPinListenerAnalog
This interface implements the callback event handler for GPIO pin state changes.interface
GpioPinListenerDigital
This interface implements the callback event handler for GPIO pin state changes. -
Uses of GpioPinListener in com.pi4j.io.gpio.impl
Methods in com.pi4j.io.gpio.impl that return types with arguments of type GpioPinListener Modifier and Type Method Description Collection<GpioPinListener>
GpioPinImpl. getListeners()
Methods in com.pi4j.io.gpio.impl with parameters of type GpioPinListener Modifier and Type Method Description void
GpioControllerImpl. addListener(GpioPinListener[] listeners, GpioPinInput... pin)
void
GpioControllerImpl. addListener(GpioPinListener listener, GpioPinInput... pin)
void
GpioPinImpl. addListener(GpioPinListener... listener)
boolean
GpioPinImpl. hasListener(GpioPinListener... listener)
void
GpioControllerImpl. removeListener(GpioPinListener[] listeners, GpioPinInput... pin)
void
GpioControllerImpl. removeListener(GpioPinListener listener, GpioPinInput... pin)
void
GpioPinImpl. removeListener(GpioPinListener... listener)
Method parameters in com.pi4j.io.gpio.impl with type arguments of type GpioPinListener Modifier and Type Method Description void
GpioPinImpl. addListener(List<? extends GpioPinListener> listeners)
void
GpioPinImpl. removeListener(List<? extends GpioPinListener> listeners)
-