SMART CLEO Smart Doorlock

Committer:
SMART_CLEO
Date:
Wed Dec 06 08:53:21 2017 +0000
Revision:
0:b5bd2de438b7
SMART_CLEO

Who changed what in which revision?

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