Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: SerialLcd/SerialLcd.cpp
- Revision:
- 4:4060309b9cc0
- Parent:
- 2:59ac9df97701
- Child:
- 8:1db19b529b22
--- a/SerialLcd/SerialLcd.cpp Thu Feb 13 16:07:07 2014 +0000
+++ b/SerialLcd/SerialLcd.cpp Tue Oct 14 08:15:03 2014 +0000
@@ -1,7 +1,7 @@
#include "mbed.h"
#include "SerialLcd.h"
-SerialLcd::SerialLcd(PinName TX): _lcd(TX,NC)
+SerialLcd::SerialLcd(PinName TX,PinName RX): _lcd(TX,RX)
{
// LCD_contrast = 60;
}
@@ -28,4 +28,4 @@
_lcd.putc( 0x80 + (row * 0x40) + clm );
wait(0.01);
}
-;
\ No newline at end of file
+;