Package lejos.hardware.lcd
Class LCDOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- lejos.hardware.lcd.LCDOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class LCDOutputStream extends java.io.OutputStreamA simple output stream that implements console output. It writes to the bottom line of the screen, scrolling the LCD up one line when writing to character position 0, and starting a new line when the position reaches 16 or a new line character is written. Used by System.out.println.- Author:
- Lawrie Griffiths
-
-
Constructor Summary
Constructors Constructor Description LCDOutputStream()LCDOutputStream(TextLCD lcd)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(int c)
-
-
-
Constructor Detail
-
LCDOutputStream
public LCDOutputStream(TextLCD lcd)
-
LCDOutputStream
public LCDOutputStream()
-
-