1) Do the programming to try display the output text at LCD on using FPGA
![]() |
| Block Diagram for LCD design |
The coding to initialize the LCD module and display 'hello' using c
Void main()
{
OpenComm();
//initialize the LCD module
WriteCommByte(0x38);
WriteCommByte(0x0F);
WriteCommByte(0x01);
Sleep(2);
//display "hello"
WriteCommByte('h' + (0x80);
WriteCommByte('e' + (0x80);
WriteCommByte('l' + (0x80);
WriteCommByte('l' + (0x80);
WriteCommByte('o' + (0x80);
CloseComm();
}
The output display "hello"
2) Third briefing about Final Year Project report. The content of briefing are:
- Spine & cover (hard cover)
- Fran page
- Abstract
- Acknowledgement
- Table of content
- List of table
- List of figure
- Appendices
- Introduction
- Literature review
- Methodology
- Result
- Conclusion
- Recommendation
- Reference


No comments:
Post a Comment