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.
Fork of TextLCD by
Revision 9:e6111e52dd59, committed 2013-10-16
- Comitter:
- salondonog
- Date:
- Wed Oct 16 06:39:30 2013 +0000
- Parent:
- 8:122fc41ed965
- Commit message:
- incremento exponencial de una variable controlado por un boton y tiempo
Changed in this revision
| TextLCD.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/TextLCD.h Sun Dec 09 09:43:55 2012 +0000
+++ b/TextLCD.h Wed Oct 16 06:39:30 2013 +0000
@@ -66,6 +66,7 @@
*
* @param c The character to write to the display
*/
+
int putc(int c);
/** Write a formated string to the LCD
@@ -81,6 +82,8 @@
* @param column The horizontal position from the left, indexed from 0
* @param row The vertical position from the top, indexed from 0
*/
+ void writeCommand(int command);
+
void locate(int column, int row);
/** Clear the screen and locate to 0,0 */
@@ -98,7 +101,7 @@
int address(int column, int row);
void character(int column, int row, int c);
void writeByte(int value);
- void writeCommand(int command);
+ //void writeCommand(int command);
void writeData(int data);
DigitalOut _rs, _e;
