han back
/
CLEO_DHT11
SMART CLEO Temp humi
TextLCD/TextLCD.cpp@0:fa2b2a1e9a8f, 2017-09-28 (annotated)
- Committer:
- SMART_CLEO
- Date:
- Thu Sep 28 02:11:59 2017 +0000
- Revision:
- 0:fa2b2a1e9a8f
SMART_CLEO
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
SMART_CLEO | 0:fa2b2a1e9a8f | 1 | /* mbed TextLCD Library, for a 4-bit LCD based on HD44780 |
SMART_CLEO | 0:fa2b2a1e9a8f | 2 | * Copyright (c) 2007-2010, sford |
SMART_CLEO | 0:fa2b2a1e9a8f | 3 | * |
SMART_CLEO | 0:fa2b2a1e9a8f | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
SMART_CLEO | 0:fa2b2a1e9a8f | 5 | * of this software and associated documentation files (the "Software"), to deal |
SMART_CLEO | 0:fa2b2a1e9a8f | 6 | * in the Software without restriction, including without limitation the rights |
SMART_CLEO | 0:fa2b2a1e9a8f | 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
SMART_CLEO | 0:fa2b2a1e9a8f | 8 | * copies of the Software, and to permit persons to whom the Software is |
SMART_CLEO | 0:fa2b2a1e9a8f | 9 | * furnished to do so, subject to the following conditions: |
SMART_CLEO | 0:fa2b2a1e9a8f | 10 | * |
SMART_CLEO | 0:fa2b2a1e9a8f | 11 | * The above copyright notice and this permission notice shall be included in |
SMART_CLEO | 0:fa2b2a1e9a8f | 12 | * all copies or substantial portions of the Software. |
SMART_CLEO | 0:fa2b2a1e9a8f | 13 | * |
SMART_CLEO | 0:fa2b2a1e9a8f | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
SMART_CLEO | 0:fa2b2a1e9a8f | 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
SMART_CLEO | 0:fa2b2a1e9a8f | 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
SMART_CLEO | 0:fa2b2a1e9a8f | 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
SMART_CLEO | 0:fa2b2a1e9a8f | 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
SMART_CLEO | 0:fa2b2a1e9a8f | 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
SMART_CLEO | 0:fa2b2a1e9a8f | 20 | * THE SOFTWARE. |
SMART_CLEO | 0:fa2b2a1e9a8f | 21 | */ |
SMART_CLEO | 0:fa2b2a1e9a8f | 22 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 23 | #include "TextLCD.h" |
SMART_CLEO | 0:fa2b2a1e9a8f | 24 | #include "mbed.h" |
SMART_CLEO | 0:fa2b2a1e9a8f | 25 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 26 | TextLCD::TextLCD(PinName rs, PinName rw, PinName e, PinName d0, PinName d1, |
SMART_CLEO | 0:fa2b2a1e9a8f | 27 | PinName d2, PinName d3, LCDType type) : _rs(rs), _rw(rw), |
SMART_CLEO | 0:fa2b2a1e9a8f | 28 | _e(e), _d(d0, d1, d2, d3), |
SMART_CLEO | 0:fa2b2a1e9a8f | 29 | _type(type) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 30 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 31 | _rw = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 32 | _e = 1; |
SMART_CLEO | 0:fa2b2a1e9a8f | 33 | _rs = 0; // command mode |
SMART_CLEO | 0:fa2b2a1e9a8f | 34 | _d.output(); |
SMART_CLEO | 0:fa2b2a1e9a8f | 35 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 36 | wait(0.015); // Wait 15ms to ensure powered up |
SMART_CLEO | 0:fa2b2a1e9a8f | 37 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 38 | // send "Display Settings" 3 times (Only top nibble of 0x30 as we've got 4-bit bus) |
SMART_CLEO | 0:fa2b2a1e9a8f | 39 | for (int i=0; i<3; i++) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 40 | writeByte(0x3); |
SMART_CLEO | 0:fa2b2a1e9a8f | 41 | wait(0.00164); // this command takes 1.64ms, so wait for it |
SMART_CLEO | 0:fa2b2a1e9a8f | 42 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 43 | writeByte(0x2); // 4-bit mode |
SMART_CLEO | 0:fa2b2a1e9a8f | 44 | wait(0.000040f); // most instructions take 40us |
SMART_CLEO | 0:fa2b2a1e9a8f | 45 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 46 | writeCommand(0x28); // Function set 001 BW N F - - |
SMART_CLEO | 0:fa2b2a1e9a8f | 47 | writeCommand(0x0C); |
SMART_CLEO | 0:fa2b2a1e9a8f | 48 | writeCommand(0x6); // Cursor Direction and Display Shift : 0000 01 CD S (CD 0-left, 1-right S(hift) 0-no, 1-yes |
SMART_CLEO | 0:fa2b2a1e9a8f | 49 | cls(); |
SMART_CLEO | 0:fa2b2a1e9a8f | 50 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 51 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 52 | void TextLCD::character(int column, int row, int c) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 53 | int a = address(column, row); |
SMART_CLEO | 0:fa2b2a1e9a8f | 54 | writeCommand(a); |
SMART_CLEO | 0:fa2b2a1e9a8f | 55 | writeData(c); |
SMART_CLEO | 0:fa2b2a1e9a8f | 56 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 57 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 58 | void TextLCD::cls() { |
SMART_CLEO | 0:fa2b2a1e9a8f | 59 | writeCommand(0x01); // cls, and set cursor to 0 |
SMART_CLEO | 0:fa2b2a1e9a8f | 60 | wait(0.00164f); // This command takes 1.64 ms |
SMART_CLEO | 0:fa2b2a1e9a8f | 61 | locate(0, 0); |
SMART_CLEO | 0:fa2b2a1e9a8f | 62 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 63 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 64 | void TextLCD::locate(int column, int row) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 65 | _column = column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 66 | _row = row; |
SMART_CLEO | 0:fa2b2a1e9a8f | 67 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 68 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 69 | int TextLCD::_putc(int value) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 70 | if (value == '\n') { |
SMART_CLEO | 0:fa2b2a1e9a8f | 71 | _column = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 72 | _row++; |
SMART_CLEO | 0:fa2b2a1e9a8f | 73 | if (_row >= rows()) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 74 | _row = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 75 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 76 | } else { |
SMART_CLEO | 0:fa2b2a1e9a8f | 77 | character(_column, _row, value); |
SMART_CLEO | 0:fa2b2a1e9a8f | 78 | _column++; |
SMART_CLEO | 0:fa2b2a1e9a8f | 79 | if (_column >= columns()) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 80 | _column = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 81 | _row++; |
SMART_CLEO | 0:fa2b2a1e9a8f | 82 | if (_row >= rows()) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 83 | _row = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 84 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 85 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 86 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 87 | return value; |
SMART_CLEO | 0:fa2b2a1e9a8f | 88 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 89 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 90 | int TextLCD::_getc() { |
SMART_CLEO | 0:fa2b2a1e9a8f | 91 | return -1; |
SMART_CLEO | 0:fa2b2a1e9a8f | 92 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 93 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 94 | void TextLCD::writeByte(int value) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 95 | _rw = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 96 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 97 | _d = value >> 4; |
SMART_CLEO | 0:fa2b2a1e9a8f | 98 | wait(0.000040f); // most instructions take 40us |
SMART_CLEO | 0:fa2b2a1e9a8f | 99 | _e = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 100 | wait(0.000040f); |
SMART_CLEO | 0:fa2b2a1e9a8f | 101 | _e = 1; |
SMART_CLEO | 0:fa2b2a1e9a8f | 102 | _d = value >> 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 103 | wait(0.000040f); |
SMART_CLEO | 0:fa2b2a1e9a8f | 104 | _e = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 105 | wait(0.000040f); // most instructions take 40us |
SMART_CLEO | 0:fa2b2a1e9a8f | 106 | _e = 1; |
SMART_CLEO | 0:fa2b2a1e9a8f | 107 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 108 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 109 | void TextLCD::writeCommand(int command) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 110 | _rs = 0; |
SMART_CLEO | 0:fa2b2a1e9a8f | 111 | writeByte(command); |
SMART_CLEO | 0:fa2b2a1e9a8f | 112 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 113 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 114 | void TextLCD::writeData(int data) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 115 | _rs = 1; |
SMART_CLEO | 0:fa2b2a1e9a8f | 116 | writeByte(data); |
SMART_CLEO | 0:fa2b2a1e9a8f | 117 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 118 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 119 | int TextLCD::address(int column, int row) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 120 | switch (_type) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 121 | case LCD20x4: |
SMART_CLEO | 0:fa2b2a1e9a8f | 122 | switch (row) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 123 | case 0: |
SMART_CLEO | 0:fa2b2a1e9a8f | 124 | return 0x80 + column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 125 | case 1: |
SMART_CLEO | 0:fa2b2a1e9a8f | 126 | return 0xc0 + column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 127 | case 2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 128 | return 0x94 + column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 129 | case 3: |
SMART_CLEO | 0:fa2b2a1e9a8f | 130 | return 0xd4 + column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 131 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 132 | case LCD16x2B: |
SMART_CLEO | 0:fa2b2a1e9a8f | 133 | return 0x80 + (row * 40) + column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 134 | case LCD16x2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 135 | case LCD20x2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 136 | default: |
SMART_CLEO | 0:fa2b2a1e9a8f | 137 | return 0x80 + (row * 0x40) + column; |
SMART_CLEO | 0:fa2b2a1e9a8f | 138 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 139 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 140 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 141 | int TextLCD::columns() { |
SMART_CLEO | 0:fa2b2a1e9a8f | 142 | switch (_type) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 143 | case LCD20x4: |
SMART_CLEO | 0:fa2b2a1e9a8f | 144 | case LCD20x2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 145 | return 20; |
SMART_CLEO | 0:fa2b2a1e9a8f | 146 | case LCD16x2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 147 | case LCD16x2B: |
SMART_CLEO | 0:fa2b2a1e9a8f | 148 | default: |
SMART_CLEO | 0:fa2b2a1e9a8f | 149 | return 16; |
SMART_CLEO | 0:fa2b2a1e9a8f | 150 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 151 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 152 | |
SMART_CLEO | 0:fa2b2a1e9a8f | 153 | int TextLCD::rows() { |
SMART_CLEO | 0:fa2b2a1e9a8f | 154 | switch (_type) { |
SMART_CLEO | 0:fa2b2a1e9a8f | 155 | case LCD20x4: |
SMART_CLEO | 0:fa2b2a1e9a8f | 156 | return 4; |
SMART_CLEO | 0:fa2b2a1e9a8f | 157 | case LCD16x2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 158 | case LCD16x2B: |
SMART_CLEO | 0:fa2b2a1e9a8f | 159 | case LCD20x2: |
SMART_CLEO | 0:fa2b2a1e9a8f | 160 | default: |
SMART_CLEO | 0:fa2b2a1e9a8f | 161 | return 2; |
SMART_CLEO | 0:fa2b2a1e9a8f | 162 | } |
SMART_CLEO | 0:fa2b2a1e9a8f | 163 | } |