Paint for the FRDM-KL25Z

Dependencies:   mbed TFT_fonts SPI_TFT_ILI9341

Committer:
ecowboy
Date:
Sat Jan 12 03:55:06 2019 +0000
Revision:
7:a72b2f80ae04
Parent:
6:13d0de9e679c
Paint for the FRDm-KL25Z

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ecowboy 0:42ec9a44bc24 1 #include "mbed.h"
ecowboy 3:1396bac4ae71 2 #include "stdio.h"
ecowboy 5:80791250acb2 3
ecowboy 0:42ec9a44bc24 4
ecowboy 0:42ec9a44bc24 5 class TouchScreen {
ecowboy 4:87b40e5986e7 6
ecowboy 3:1396bac4ae71 7 PinName yp, ym, xm, xp;
ecowboy 0:42ec9a44bc24 8
ecowboy 0:42ec9a44bc24 9 public:
ecowboy 0:42ec9a44bc24 10 TouchScreen(PinName xp, PinName yp, PinName xm, PinName ym);
ecowboy 4:87b40e5986e7 11 int readTouch(PinName a, PinName i, PinName n, PinName m);
ecowboy 0:42ec9a44bc24 12 };
ecowboy 0:42ec9a44bc24 13
ecowboy 2:fe018965e46c 14 int map(float value, float fromSource, float toSource, float fromTarget, float toTarget);