Forum Discussion
1 Reply
- Altera_Forum
Honored Contributor
Got my answer from Rocketboards forum...
You can write to it very simply by just echoing text to it from the command line (this may be a helpful first step regardless of the end goal). Look in the /dev folder for the correct name but i believe it will always show up as ttyLCD0: echo “Testing LCD” > /dev/ttyLCD0 From user space you can create code to open the same path and perform writes very similar to a file, such as : lcd_handle = open("/dev/ttyLCD0", write) fprintf(lcd_handle, “First Line\nSecod Line”)