Paint for the FRDM-KL25Z

Dependencies:   mbed TFT_fonts SPI_TFT_ILI9341

touch.h

Committer:
ecowboy
Date:
2019-01-12
Revision:
7:a72b2f80ae04
Parent:
6:13d0de9e679c

File content as of revision 7:a72b2f80ae04:

#include "mbed.h"
#include "stdio.h"


class TouchScreen {
    
    PinName yp, ym, xm, xp;
    
    public:
    TouchScreen(PinName xp, PinName yp, PinName xm, PinName ym);
    int readTouch(PinName a, PinName i, PinName n, PinName m);
};

    int map(float value, float fromSource, float toSource, float fromTarget, float toTarget);