Language

english vietnamese

Nokia 6100 LCD Display Image from mini SD Card | PIC18F

0
          I have just finished this project last night. The board is used for Music Box ^^ I will post later, It includes vs1011e audio decoder IC and amplifier IC. I just use the PIC18F4620 to read the image from miniSD Card and display the BMP image to Nokia 6100 LCD.
All images are 132x132 px (vary depend on picture but the maximum size is 132x132). 24bit BMP






A part of code:

while(i)
{
    pointer= FSfopen(rec.filename,r);
    if (pointer==NULL){
        sprintf(buf,_s"Open BMP error",rec.filename);
        break;
    }
    else
        sprintf(buf,_s"Open %s OK",rec.filename);
    lcd_ram(buf,5,20);
        
    DrawBitmapSD(pointer);
    FSfclose(pointer);
    if (FindNext(&rec) !=0
    { 
        i=0;
        break;
    } 

}

Video:

0 comments: