This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <avr/io.h> | |
| #include <util/delay.h> | |
| #define LCD_RS_DIR DDRC | |
| #define LCD_RS_PORT PORTC | |
| #define LCD_RS (1 << 0) | |
| #define LCD_E_DIR DDRD | |
| #define LCD_E_PORT PORTD | |
| #define LCD_E (1 << 7) |