Package com.pi4j.io.gpio.event
Interface GpioPinListenerDigital
-
- All Superinterfaces:
EventListener
,GpioPinListener
public interface GpioPinListenerDigital extends GpioPinListener
This interface implements the callback event handler for GPIO pin state changes.
Before using the Pi4J library, you need to ensure that the Java VM in configured with access to the following system libraries:
- pi4j
- wiringPi
This library depends on the wiringPi native system library. (developed by Gordon Henderson @ http://wiringpi.com/)
- Author:
- Robert Savage (http://www.savagehomeautomation.com)
- See Also:
- https://pi4j.com/
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleGpioPinDigitalStateChangeEvent(GpioPinDigitalStateChangeEvent event)
-
-
-
Method Detail
-
handleGpioPinDigitalStateChangeEvent
void handleGpioPinDigitalStateChangeEvent(GpioPinDigitalStateChangeEvent event)
-
-