use VS1033(MP3 decoder) and UL024TF(TFTLCD)

Dependencies:   FastIO SDFileSystem TFTLCDwithFastIO TouchPanel VS1033 mbed

Fork of 11U68_MP3Player with TFTLCD by en 129

image.h

Committer:
nameless129
Date:
2015-07-30
Revision:
8:198b69e78c39
Parent:
7:fc65d965a569

File content as of revision 8:198b69e78c39:

#ifndef IMAGE_H
#define IMAGE_H
#pragma O3
#include "ili9328.h"

#ifdef __cplusplus
extern "C" {
#endif

extern const unsigned short bmp_button_play[0xE10];     // 60x60 pixels 16bitRGB
extern const unsigned short bmp_button_stop[0xE10];     // 60x60 pixels 16bitRGB
extern const unsigned short bmp_button_next[0xE10];     // 60x60 pixels 16bitRGB
extern const unsigned short bmp_button_prev[0xE10];     // 60x60 pixels 16bitRGB
extern const unsigned short bmp_button_volup[0xE10];    // 60x60 pixels 16bitRGB
extern const unsigned short bmp_button_voldown[0xE10];  // 60x60 pixels 16bitRGB
extern const unsigned short bmp_button_pause[0xE10];    // 60x60 pixels 16bitRGB


#ifdef __cplusplus
}
#endif


#endif