aboutsummaryrefslogtreecommitdiffstats
path: root/demos/touchpad/main.c
blob: 8a1d3275b49ac81ab90ca5d42f266910cc2a9d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "ch.h"
#include "hal.h"
#include "gdisp.h"
#include "touchpad.h"

TOUCHPADDriver TOUCHPADD1 = {
	&SPID1,
};

int main(void) {
	halInit();
	chSysInit();

	gdispInit();
	gdispClear(Lime);

	tpInit(&TOUCHPADD1);
	tpCalibrate();

	gdispClear(Lime);	

	while (TRUE) {
		gdispDrawFillCircle(tpReadX(), tpReadY(), 3, Black);
	}
}