Uses of Class
com.pi4j.io.spi.SpiMode
-
Packages that use SpiMode Package Description com.pi4j.io.spi com.pi4j.io.spi.impl -
-
Uses of SpiMode in com.pi4j.io.spi
Fields in com.pi4j.io.spi declared as SpiMode Modifier and Type Field Description static SpiMode
SpiDevice. DEFAULT_SPI_MODE
Methods in com.pi4j.io.spi that return SpiMode Modifier and Type Method Description static SpiMode
SpiMode. getByNumber(int modeNumber)
static SpiMode
SpiMode. getByNumber(short modeNumber)
static SpiMode
SpiMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static SpiMode[]
SpiMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.pi4j.io.spi with parameters of type SpiMode Modifier and Type Method Description static SpiDevice
SpiFactory. getInstance(SpiChannel channel, int speed, SpiMode mode)
Create new SpiDevice instancestatic SpiDevice
SpiFactory. getInstance(SpiChannel channel, SpiMode mode)
Create new SpiDevice instance -
Uses of SpiMode in com.pi4j.io.spi.impl
Fields in com.pi4j.io.spi.impl declared as SpiMode Modifier and Type Field Description protected SpiMode
SpiDeviceImpl. mode
Constructors in com.pi4j.io.spi.impl with parameters of type SpiMode Constructor Description SpiDeviceImpl(SpiChannel channel, int speed, SpiMode mode)
Creates the SPI Device at the given spi and input channelSpiDeviceImpl(SpiChannel channel, SpiMode mode)
Creates the SPI Device at the given SPI and input channel (A default speed of 1 MHz will be used)
-