SMART CLEO Uart Text Lcd

Committer:
SMART_CLEO
Date:
Thu Sep 28 06:29:59 2017 +0000
Revision:
1:d05971975fdc
Parent:
0:21b4d8237564
SMART_CLEO

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SMART_CLEO 0:21b4d8237564 1 /* mbed TextLCD Library, for a 4-bit LCD based on HD44780
SMART_CLEO 0:21b4d8237564 2 * Copyright (c) 2007-2010, sford
SMART_CLEO 0:21b4d8237564 3 *
SMART_CLEO 0:21b4d8237564 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
SMART_CLEO 0:21b4d8237564 5 * of this software and associated documentation files (the "Software"), to deal
SMART_CLEO 0:21b4d8237564 6 * in the Software without restriction, including without limitation the rights
SMART_CLEO 0:21b4d8237564 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
SMART_CLEO 0:21b4d8237564 8 * copies of the Software, and to permit persons to whom the Software is
SMART_CLEO 0:21b4d8237564 9 * furnished to do so, subject to the following conditions:
SMART_CLEO 0:21b4d8237564 10 *
SMART_CLEO 0:21b4d8237564 11 * The above copyright notice and this permission notice shall be included in
SMART_CLEO 0:21b4d8237564 12 * all copies or substantial portions of the Software.
SMART_CLEO 0:21b4d8237564 13 *
SMART_CLEO 0:21b4d8237564 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
SMART_CLEO 0:21b4d8237564 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
SMART_CLEO 0:21b4d8237564 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
SMART_CLEO 0:21b4d8237564 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
SMART_CLEO 0:21b4d8237564 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
SMART_CLEO 0:21b4d8237564 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
SMART_CLEO 0:21b4d8237564 20 * THE SOFTWARE.
SMART_CLEO 0:21b4d8237564 21 */
SMART_CLEO 0:21b4d8237564 22
SMART_CLEO 0:21b4d8237564 23 #ifndef MBED_TEXTLCD_H
SMART_CLEO 0:21b4d8237564 24 #define MBED_TEXTLCD_H
SMART_CLEO 0:21b4d8237564 25
SMART_CLEO 0:21b4d8237564 26 #include "mbed.h"
SMART_CLEO 0:21b4d8237564 27
SMART_CLEO 0:21b4d8237564 28 /** A TextLCD interface for driving 4-bit HD44780-based LCDs
SMART_CLEO 0:21b4d8237564 29 *
SMART_CLEO 0:21b4d8237564 30 * Currently supports 16x2, 20x2 and 20x4 panels
SMART_CLEO 0:21b4d8237564 31 *
SMART_CLEO 0:21b4d8237564 32 * @code
SMART_CLEO 0:21b4d8237564 33 * #include "mbed.h"
SMART_CLEO 0:21b4d8237564 34 * #include "TextLCD.h"
SMART_CLEO 0:21b4d8237564 35 *
SMART_CLEO 0:21b4d8237564 36 * TextLCD lcd(p10, p12, p15, p16, p29, p30); // rs, e, d0-d3
SMART_CLEO 0:21b4d8237564 37 *
SMART_CLEO 0:21b4d8237564 38 * int main() {
SMART_CLEO 0:21b4d8237564 39 * lcd.printf("Hello World!\n");
SMART_CLEO 0:21b4d8237564 40 * }
SMART_CLEO 0:21b4d8237564 41 * @endcode
SMART_CLEO 0:21b4d8237564 42 */
SMART_CLEO 0:21b4d8237564 43 class TextLCD : public Stream {
SMART_CLEO 0:21b4d8237564 44 public:
SMART_CLEO 0:21b4d8237564 45
SMART_CLEO 0:21b4d8237564 46 /** LCD panel format */
SMART_CLEO 0:21b4d8237564 47 enum LCDType {
SMART_CLEO 0:21b4d8237564 48 LCD16x2 /**< 16x2 LCD panel (default) */
SMART_CLEO 0:21b4d8237564 49 , LCD16x2B /**< 16x2 LCD panel alternate addressing */
SMART_CLEO 0:21b4d8237564 50 , LCD20x2 /**< 20x2 LCD panel */
SMART_CLEO 0:21b4d8237564 51 , LCD20x4 /**< 20x4 LCD panel */
SMART_CLEO 0:21b4d8237564 52 };
SMART_CLEO 0:21b4d8237564 53
SMART_CLEO 0:21b4d8237564 54 /** Create a TextLCD interface
SMART_CLEO 0:21b4d8237564 55 *
SMART_CLEO 0:21b4d8237564 56 * @param rs Instruction/data control line
SMART_CLEO 0:21b4d8237564 57 * @param e Enable line (clock)
SMART_CLEO 0:21b4d8237564 58 * @param d0-d3 Data lines
SMART_CLEO 0:21b4d8237564 59 * @param type Sets the panel size/addressing mode (default = LCD16x2)
SMART_CLEO 0:21b4d8237564 60 */
SMART_CLEO 0:21b4d8237564 61 TextLCD(PinName rs, PinName rw, PinName e, PinName d0, PinName d1, PinName d2, PinName d3, LCDType type = LCD16x2);
SMART_CLEO 0:21b4d8237564 62
SMART_CLEO 0:21b4d8237564 63 #if DOXYGEN_ONLY
SMART_CLEO 0:21b4d8237564 64 /** Write a character to the LCD
SMART_CLEO 0:21b4d8237564 65 *
SMART_CLEO 0:21b4d8237564 66 * @param c The character to write to the display
SMART_CLEO 0:21b4d8237564 67 */
SMART_CLEO 0:21b4d8237564 68 int putc(int c);
SMART_CLEO 0:21b4d8237564 69
SMART_CLEO 0:21b4d8237564 70 /** Write a formated string to the LCD
SMART_CLEO 0:21b4d8237564 71 *
SMART_CLEO 0:21b4d8237564 72 * @param format A printf-style format string, followed by the
SMART_CLEO 0:21b4d8237564 73 * variables to use in formating the string.
SMART_CLEO 0:21b4d8237564 74 */
SMART_CLEO 0:21b4d8237564 75 int printf(const char* format, ...);
SMART_CLEO 0:21b4d8237564 76 #endif
SMART_CLEO 0:21b4d8237564 77
SMART_CLEO 0:21b4d8237564 78 /** Locate to a screen column and row
SMART_CLEO 0:21b4d8237564 79 *
SMART_CLEO 0:21b4d8237564 80 * @param column The horizontal position from the left, indexed from 0
SMART_CLEO 0:21b4d8237564 81 * @param row The vertical position from the top, indexed from 0
SMART_CLEO 0:21b4d8237564 82 */
SMART_CLEO 0:21b4d8237564 83 void locate(int column, int row);
SMART_CLEO 0:21b4d8237564 84
SMART_CLEO 0:21b4d8237564 85 /** Clear the screen and locate to 0,0 */
SMART_CLEO 0:21b4d8237564 86 void cls();
SMART_CLEO 0:21b4d8237564 87
SMART_CLEO 0:21b4d8237564 88 int rows();
SMART_CLEO 0:21b4d8237564 89 int columns();
SMART_CLEO 0:21b4d8237564 90
SMART_CLEO 0:21b4d8237564 91 protected:
SMART_CLEO 0:21b4d8237564 92
SMART_CLEO 0:21b4d8237564 93 // Stream implementation functions
SMART_CLEO 0:21b4d8237564 94 virtual int _putc(int value);
SMART_CLEO 0:21b4d8237564 95 virtual int _getc();
SMART_CLEO 0:21b4d8237564 96
SMART_CLEO 0:21b4d8237564 97 int address(int column, int row);
SMART_CLEO 0:21b4d8237564 98 void character(int column, int row, int c);
SMART_CLEO 0:21b4d8237564 99 void writeByte(int value);
SMART_CLEO 0:21b4d8237564 100 void writeCommand(int command);
SMART_CLEO 0:21b4d8237564 101 void writeData(int data);
SMART_CLEO 0:21b4d8237564 102
SMART_CLEO 0:21b4d8237564 103 DigitalOut _rs, _rw, _e;
SMART_CLEO 0:21b4d8237564 104 BusInOut _d;
SMART_CLEO 0:21b4d8237564 105 LCDType _type;
SMART_CLEO 0:21b4d8237564 106
SMART_CLEO 0:21b4d8237564 107 int _column;
SMART_CLEO 0:21b4d8237564 108 int _row;
SMART_CLEO 0:21b4d8237564 109 };
SMART_CLEO 0:21b4d8237564 110
SMART_CLEO 0:21b4d8237564 111 #endif