Resolution 480x320 Ili9488 TFT 3.95" From mcufriend, about $8
I couldn't find a comprehensive list of links for the RC2014 so I started one. Suggestions welcome.
- RC2014 Website - descriptions of all official RC2014 boards
- RC2014 Github Repo - official ROMs and example code
- RC2014 CP/M Guide - guide to setting up CP/M on the RC2014
- Decoding RC2014 ROM Labels - explanation of what RC2014 ROM labels mean
- RC2014 Module Template - Kicad template for building RC2014 boards
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
| void LCD_write(uint8_t d) { | |
| // ILI9341 reads data pins when WR rises from LOW to HIGH (A1 pin on arduino) | |
| PORTC = PORTC & B11111101; // WR 0 | |
| // data pins of ILI9341 connected to two arduino ports | |
| PORTD = (PORTD & B00000011) | ((d) & B11111100); | |
| PORTB = (PORTB & B11111100) | ((d) & B00000011); | |
| PORTC = PORTC | B00000010; // WR 1 | |
| } |