Uses of Class
com.pi4j.io.gpio.PinPullResistance
-
Packages that use PinPullResistance Package Description com.pi4j.io.gpio com.pi4j.io.gpio.exception com.pi4j.io.gpio.impl com.pi4j.util -
-
Uses of PinPullResistance in com.pi4j.io.gpio
Methods in com.pi4j.io.gpio that return PinPullResistance Modifier and Type Method Description PinPullResistance
GpioController. getPullResistance(GpioPin pin)
PinPullResistance
GpioPin. getPullResistance()
PinPullResistance
GpioProvider. getPullResistance(Pin pin)
PinPullResistance
GpioProviderBase. getPullResistance(Pin pin)
PinPullResistance
GpioPinShutdown. getPullResistor()
PinPullResistance
GpioProviderPinCache. getResistance()
static PinPullResistance
PinPullResistance. valueOf(String name)
Returns the enum constant of this type with the specified name.static PinPullResistance[]
PinPullResistance. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.pi4j.io.gpio that return types with arguments of type PinPullResistance Modifier and Type Method Description static EnumSet<PinPullResistance>
PinPullResistance. all()
EnumSet<PinPullResistance>
Pin. getSupportedPinPullResistance()
Method parameters in com.pi4j.io.gpio with type arguments of type PinPullResistance Modifier and Type Method Description protected static Pin
PinProvider. createDigitalPin(String providerName, int address, String name, EnumSet<PinPullResistance> resistance, EnumSet<PinEdge> edges)
-
Uses of PinPullResistance in com.pi4j.io.gpio.exception
Methods in com.pi4j.io.gpio.exception that return PinPullResistance Modifier and Type Method Description PinPullResistance
UnsupportedPinPullResistanceException. getPullResistance()
Constructors in com.pi4j.io.gpio.exception with parameters of type PinPullResistance Constructor Description UnsupportedPinPullResistanceException(Pin pin, PinPullResistance resistance)
-
Uses of PinPullResistance in com.pi4j.io.gpio.impl
Methods in com.pi4j.io.gpio.impl that return PinPullResistance Modifier and Type Method Description PinPullResistance
GpioControllerImpl. getPullResistance(GpioPin pin)
PinPullResistance
GpioPinImpl. getPullResistance()
PinPullResistance
GpioPinShutdownImpl. getPullResistor()
Methods in com.pi4j.io.gpio.impl that return types with arguments of type PinPullResistance Modifier and Type Method Description EnumSet<PinPullResistance>
PinImpl. getSupportedPinPullResistance()
-
Uses of PinPullResistance in com.pi4j.util
Methods in com.pi4j.util that return PinPullResistance Modifier and Type Method Description static PinPullResistance
CommandArgumentParser. getPinPullResistance(PinPullResistance defaultPull, String... args)
This utility method searches for "--pull (up|down|off)", "--l (up|down|off)", "--up", or "--down" in the command arguments array and returns a PinPullResistance instance based on the option value provided.Methods in com.pi4j.util with parameters of type PinPullResistance Modifier and Type Method Description static PinPullResistance
CommandArgumentParser. getPinPullResistance(PinPullResistance defaultPull, String... args)
This utility method searches for "--pull (up|down|off)", "--l (up|down|off)", "--up", or "--down" in the command arguments array and returns a PinPullResistance instance based on the option value provided.
-