Use this to play video and display image.

Dependencies:   4DGL-uLCD-SE mbed

Committer:
ldeng31
Date:
Tue Oct 06 19:20:52 2015 +0000
Revision:
0:f35af796eee5
Use this to play video on the lcd or display image.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ldeng31 0:f35af796eee5 1 #include "mbed.h"
ldeng31 0:f35af796eee5 2 #include "uLCD_4DGL.h"
ldeng31 0:f35af796eee5 3
ldeng31 0:f35af796eee5 4
ldeng31 0:f35af796eee5 5 uLCD_4DGL myLCD(p9, p10, p11);
ldeng31 0:f35af796eee5 6
ldeng31 0:f35af796eee5 7 int main() {
ldeng31 0:f35af796eee5 8 myLCD.media_init();
ldeng31 0:f35af796eee5 9 myLCD.set_sector_address(0x0000, 0x1111);
ldeng31 0:f35af796eee5 10 myLCD.display_video(0,0);
ldeng31 0:f35af796eee5 11 }