Package jmri.jmrix.pi

Class RaspberryPiSensor

All Implemented Interfaces:
com.pi4j.io.gpio.event.GpioPinListener, com.pi4j.io.gpio.event.GpioPinListenerDigital, Comparable<NamedBean>, EventListener, PropertyChangeProvider, DigitalIO, NamedBean, Sensor

public class RaspberryPiSensor extends AbstractSensor implements com.pi4j.io.gpio.event.GpioPinListenerDigital
Sensor interface for RaspberryPi GPIO pins.
  • Constructor Details

  • Method Details

    • requestUpdateFromLayout

      public void requestUpdateFromLayout()
      Request an update on status by sending an Instruction to the Pi.
      Specified by:
      requestUpdateFromLayout in interface DigitalIO
    • handleGpioPinDigitalStateChangeEvent

      public void handleGpioPinDigitalStateChangeEvent(com.pi4j.io.gpio.event.GpioPinDigitalStateChangeEvent event)
      Specified by:
      handleGpioPinDigitalStateChangeEvent in interface com.pi4j.io.gpio.event.GpioPinListenerDigital
    • setPullResistance

      Set the pull resistance.

      In this default implementation, the input value is ignored.

      Specified by:
      setPullResistance in interface Sensor
      Overrides:
      setPullResistance in class AbstractSensor
      Parameters:
      r - PullResistance value to use.
    • getPullResistance

      Get the pull resistance
      Specified by:
      getPullResistance in interface Sensor
      Overrides:
      getPullResistance in class AbstractSensor
      Returns:
      the currently set PullResistance value. In this default implementation, PullResistance.PULL_OFF is always returned.
    • dispose

      public void dispose()
      Description copied from class: AbstractNamedBean
      Deactivate this object, so that it releases as many resources as possible and no longer effects others.

      For example, if this object has listeners, after a call to this method it should no longer notify those listeners. Any native or system-wide resources it maintains should be released, including threads, files, etc.

      It is an error to invoke any other methods on this object once dispose() has been called. Note, however, that there is no guarantee about behavior in that case.

      Afterwards, references to this object may still exist elsewhere, preventing its garbage collection. But it's formally dead, and shouldn't be keeping any other objects alive. Therefore, this method should null out any references to other objects that this NamedBean contained.

      Specified by:
      dispose in interface NamedBean
      Specified by:
      dispose in interface Sensor
      Overrides:
      dispose in class AbstractSensor