/** * (C) Copyright Collin J. Doering 2015 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * File: lcdLib.h * Author: Collin J. Doering * Date: Sep 29, 2015 */ // Includes #include // LCD data bus PORT, PIN and DDR #define LCD_DBUS_PORT PORTB #define LCD_DBUS_DDR DDRB #define LCD_DBUS_PIN PINB #define LCD_CTRL_PORT PORTD #define LCD_CTRL_DDR DDRD #define LCD_RS PD2 #define LCD_RW PD3 #define LCD_ENABLE PD4 #define LCD_DBUS0 PB0 #define LCD_DBUS1 PB1 #define LCD_DBUS2 PB2 #define LCD_DBUS3 PB3 #define LCD_DBUS4 PB4 #define LCD_DBUS5 PB5 #define LCD_DBUS6 PB6 #define LCD_DBUS7 PB7 #define LCD_BF PB7 // LCD delays (in microseconds) #define LCD_DELAY 50 #define LCD_CLEAR_SCREEN_DELAY 16000 #define LCD_SEND_DELAY 40 // unused // LCD Commands #define CMD_CLEAR_SCREEN 0x01 #define CMD_RETURN_HOME 0x02 //------------------------------------ #define STATUS_LED_PORT PORTC #define STATUS_LED_DDR DDRC #define STATUS_LED PC5 // Function definitions void flashLED(uint8_t times); //------------------------------------ void clkLCD(void); void loop_until_LCD_BF_clear(void); void writeLCDInstr_(uint8_t instr); void writeLCDInstr(uint8_t instr); void writeCharToLCD_(char c); void writeCharToLCD(char c); void writeStringToLCD(const char* str); void clearScreen(void); char readCharFromLCD(void); /* Do software initialization as specified by the datasheet */ void initLCD(void); void initLCDByInternalReset(void);