Source code for wpilib.digitalinput

# validated: 2017-12-23 EN f9bece2ffbf7 edu/wpi/first/wpilibj/DigitalInput.java
# ----------------------------------------------------------------------------
# Copyright (c) FIRST 2008-2012. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
# ----------------------------------------------------------------------------

import hal

from .digitalsource import DigitalSource

__all__ = ["DigitalInput"]


[docs]class DigitalInput(DigitalSource): """Reads a digital input. This class will read digital inputs and return the current value on the channel. Other devices such as encoders, gear tooth sensors, etc. that are implemented elsewhere will automatically allocate digital inputs and outputs as required. This class is only for devices like switches etc. that aren't implemented anywhere else. """ def __init__(self, channel): """Create an instance of a Digital Input class. Creates a digital input given a channel. :param channel: the DIO channel for the digital input. 0-9 are on-board, 10-25 are on the MXP :type channel: int """ super().__init__() self.checkDigitalChannel(channel) self.channel = channel self.handle = hal.initializeDIOPort(hal.getPort(channel), True) hal.report(hal.UsageReporting.kResourceType_DigitalInput, channel) self.setName("DigitalInput", channel)
[docs] def free(self): super().free() if self.interrupt: self.cancelInterrupts() hal.freeDIOPort(self.handle)
[docs] def get(self): """Get the value from a digital input channel. Retrieve the value of a single digital input channel from the FPGA. :returns: the state of the digital input :rtype: bool """ return hal.getDIO(self.handle)
[docs] def getChannel(self): """Get the channel of the digital input. :returns: The GPIO channel number that this object represents. :rtype: int """ return self.channel
[docs] def getAnalogTriggerTypeForRouting(self): """Get the analog trigger type. :returns: false :rtype: int """ return 0
[docs] def isAnalogTrigger(self): """Is this an analog trigger. :returns: true if this is an analog trigger :rtype: bool """ return False
[docs] def getPortHandleForRouting(self): """Get the HAL Port Handle. :return: The HAL Handle to the specified source """ return self.handle
[docs] def initSendable(self, builder): builder.setSmartDashboardType("Digital Input") builder.addBooleanProperty("Value", self.get, None)