Using std::ostream with TextLCD

Dependencies:   ACM1602NI TextLCD

Dependents:   TextLCD_ostream_sample

This is class library inherited std::ostream for TextLCD
Because a large amount of memory is needed, do not work in low memory MPU

Sample program is here. And notebook page is here (sorry notebook page is only in Japanese)

Revision:
3:183bcab4951b
Parent:
1:e46139d4b8ba
Child:
4:3a1291526e04
--- a/TextLCD_ostream.cpp	Sun Jun 19 01:10:35 2016 +0000
+++ b/TextLCD_ostream.cpp	Wed Jun 22 08:28:51 2016 +0000
@@ -6,13 +6,6 @@
     return c;
 }
 
-
-lcd_ostream::lcd_ostream(TextLCD_Base *p) : std::ostream(&lcd_buf)
-{
-    lcd_buf.setlcd(p);
-    lcd=p;
-}
-
 lcd_ostream& lcd_ostream::locate(int column, int row)
 {
     lcd->locate(column,row);