Music Player for ARCH-PRO

Dependencies:   GT20L16J1Y_font TinyJpgDec mbed

SeeedStudio Arch Pro + aitendo TFT-LCD w/Touch panel => .wav File Player
LPC1768 + aitendo TFT-LCD w/Touch panel => .wav File Player
http://goji2100.com/
/media/uploads/Goji/017s.png

Committer:
Goji
Date:
Mon Sep 08 16:07:05 2014 +0000
Revision:
0:6fa19738f62e
Music Player for ARCH-PRO

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Goji 0:6fa19738f62e 1 // --------------------------------------------------------
Goji 0:6fa19738f62e 2 // aitend26.h (c) Copyright 2013-2014 Goji.
Goji 0:6fa19738f62e 3 // --------------------------------------------------------
Goji 0:6fa19738f62e 4
Goji 0:6fa19738f62e 5 #if defined(aitendo26)
Goji 0:6fa19738f62e 6 //====================
Goji 0:6fa19738f62e 7
Goji 0:6fa19738f62e 8 // aitendo 2.6" for Arduino UNO[UNO026LCD7781TP]
Goji 0:6fa19738f62e 9 // ST7783
Goji 0:6fa19738f62e 10 // --------------------------------------------------------
Goji 0:6fa19738f62e 11
Goji 0:6fa19738f62e 12 /*
Goji 0:6fa19738f62e 13 DigitalInOut U_A0(p15); // Y- (A0) p15 = P0.23
Goji 0:6fa19738f62e 14 AnalogIn U_A1(p16); // X- (A1) p16 = P0.24
Goji 0:6fa19738f62e 15 AnalogIn U_A2(p17); // Y+ (A2) p17 = P0.25
Goji 0:6fa19738f62e 16 DigitalInOut U_A3(p18); // X+ (A3) p18 = P0.26
Goji 0:6fa19738f62e 17 */
Goji 0:6fa19738f62e 18
Goji 0:6fa19738f62e 19 #define TPC_XNON ( 511)
Goji 0:6fa19738f62e 20 #define TPC_XMIN ( 602)
Goji 0:6fa19738f62e 21 #define TPC_XMAX (2940)
Goji 0:6fa19738f62e 22 #define TPC_YNON ( 471)
Goji 0:6fa19738f62e 23 #define TPC_YMIN ( 584)
Goji 0:6fa19738f62e 24 #define TPC_YMAX (2709)
Goji 0:6fa19738f62e 25
Goji 0:6fa19738f62e 26 #define TFT_RUN()
Goji 0:6fa19738f62e 27 #define TFT_STOP()
Goji 0:6fa19738f62e 28
Goji 0:6fa19738f62e 29 void TPC_Init(void);
Goji 0:6fa19738f62e 30 int16_t get_pX(void);
Goji 0:6fa19738f62e 31 int16_t get_pY(void);
Goji 0:6fa19738f62e 32
Goji 0:6fa19738f62e 33 //====================
Goji 0:6fa19738f62e 34 #endif