Forum Discussion
Altera_Forum
Honored Contributor
19 years agoLCD on NIOSII
I have built my NIOS II system on DE2 board having DRAM, JTAG UART and 16207 LCD. This is my code in NIOS II IDE: ---------------------------------------------# include <stdio.h># include "syst...
Altera_Forum
Honored Contributor
19 years agoI use lcd display like this and it works well
FILE *lcd; lcd = fopen("/dev/lcd_display", "w"); /* Write some character to the LCD. */ if (lcd != NULL ) { fprintf(lcd, "%c", ESC); fprintf(lcd,"[%c", y); fprintf(lcd, "%c", ESC); fprintf(lcd,"%cH", x); } fclose( lcd ); Many regards Marcin.