Package jmri

Interface Sensor

All Superinterfaces:
Comparable<NamedBean>, DigitalIO, NamedBean, PropertyChangeProvider
All Known Implementing Classes:
AbstractSensor, AcelaSensor, BiDiBSensor, CbusSensor, Dcc4PcSensor, DCCppSensor, EcosSensor, IpocsSensor, JMRIClientSensor, LnSensor, MarklinSensor, MqttSensor, NceSensor, OlcbSensor, RaspberryPiSensor, RfidSensor, RpsSensor, SerialSensor, SerialSensor, SerialSensor, SerialSensor, SerialSensor, SerialSensor, SRCPSensor, TamsSensor, TimeoutRfidSensor, XBeeSensor, XNetSensor, Z21CanSensor, Z21RMBusSensor

public interface Sensor extends DigitalIO
General input device representation. Often subclassed for specific types of sensors.
This file is part of JMRI.

JMRI is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. See the "COPYING" file for a copy of this license.

JMRI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

  • Field Details

  • Method Details

    • isConsistentState

      default boolean isConsistentState()
      Show whether state is stable. For turnouts, a consistent state is one you can safely run trains over. For lights, it's a state which is either on or off, not in between.
      Specified by:
      isConsistentState in interface DigitalIO
      Returns:
      true if state is valid and the known state is the same as commanded
    • setCommandedState

      Change the commanded state, which results in the relevant command(s) being sent to the hardware. The exception is thrown if there are problems communicating with the layout hardware.
      Specified by:
      setCommandedState in interface DigitalIO
      Parameters:
      s - the desired state
    • getCommandedState

      default int getCommandedState()
      Query the commanded state. This is a bound parameter, so you can also register a listener to be informed of changes.
      Specified by:
      getCommandedState in interface DigitalIO
      Returns:
      the commanded state
    • setKnownState

      Set the known state on the layout. This might not always be available, or effective, depending on the limits of the underlying system and implementation.
      Parameters:
      newState - the state to set
      Throws:
      JmriException - if unable to set the state
    • setInverted

      @InvokeOnLayoutThread void setInverted(boolean inverted)
      Control whether the actual sensor input is considered to be inverted, such that the normal electrical signal that normally results in an ACTIVE state now results in an INACTIVE state.

      Changing this changes the state from ACTIVE to INACTIVE and vice-versa, with notifications; UNKNOWN and INCONSISTENT are left unchanged.

      Parameters:
      inverted - true if the sensor should be inverted; false otherwise
    • getInverted

      boolean getInverted()
      Get the inverted state.
      Returns:
      true if the electrical signal that normally results in an ACTIVE state now results in an INACTIVE state; false otherwise
    • canInvert

      boolean canInvert()
      Determine if sensor can be inverted. When a turnout is inverted the ACTIVE and INACTIVE states are inverted on the layout.
      Returns:
      true if can be inverted; false otherwise
    • dispose

      void dispose()
      Remove references to and from this object, so that it can eventually be garbage-collected.
      Specified by:
      dispose in interface NamedBean
    • getRawState

      Used to return the Raw state of a sensor prior to the known state of a sensor being set. The raw state value can be different from the known state when the sensor debounce option is used.
      Returns:
      raw state value
    • setSensorDebounceGoingActiveTimer

      Set the active debounce delay.
      Parameters:
      timer - delay in milliseconds; set to zero to de-activate debounce
    • getSensorDebounceGoingActiveTimer

      Get the active debounce delay.
      Returns:
      delay in milliseconds
    • setSensorDebounceGoingInActiveTimer

      Set the inactive debounce delay.
      Parameters:
      timer - delay in milliseconds; set to zero to de-activate debounce
    • getSensorDebounceGoingInActiveTimer

      Get the inactive debounce delay.
      Returns:
      delay in milliseconds
    • setUseDefaultTimerSettings

      void setUseDefaultTimerSettings(boolean flag)
      Use the timers specified in the SensorManager for the debounce delay.
      Parameters:
      flag - true to set to current defaults if not previously true
      Since:
      4.9.2
    • getUseDefaultTimerSettings

      Does this sensor use the default timers values? (A remarkably unfortunate name given the one above)
      Returns:
      true if using default debounce values from the SensorManager
      Since:
      4.9.2
    • setReporter

      Some sensor boards also serve the function of being able to report back train identities via such methods as RailCom. The setting and creation of the reporter against the sensor should be done when the sensor is created. This information is not saved.
      Parameters:
      re - the reporter to associate with the sensor
    • getReporter

      Retrieve the reporter associated with this sensor if there is one.
      Returns:
      the reporter or null if there is no associated reporter
    • setPullResistance

      Set the pull resistance
      Parameters:
      r - PullResistance value to use.
    • getPullResistance

      Get the pull resistance
      Returns:
      the currently set PullResistance value.