Package com.diozero.devices
Interface HD44780Lcd.LcdConnection
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
HD44780Lcd.PCF8574LcdConnection
,HD44780Lcd.PiFaceCadLcdConnection
- Enclosing class:
- HD44780Lcd
public static interface HD44780Lcd.LcdConnection extends AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
int
getBacklightBit()
int
getDataReadWriteBit()
int
getEnableBit()
int
getRegisterSelectBit()
boolean
isDataInHighNibble()
void
write(byte values)
-
-
-
Method Detail
-
write
void write(byte values)
-
isDataInHighNibble
boolean isDataInHighNibble()
-
getBacklightBit
int getBacklightBit()
-
getEnableBit
int getEnableBit()
-
getDataReadWriteBit
int getDataReadWriteBit()
-
getRegisterSelectBit
int getRegisterSelectBit()
-
close
void close() throws RuntimeIOException
- Specified by:
close
in interfaceAutoCloseable
- Throws:
RuntimeIOException
-
-