added touchpad demo
This commit is contained in:
parent
1c105a40cf
commit
2285ddfc63
26
demos/touchpad/main.c
Normal file
26
demos/touchpad/main.c
Normal file
@ -0,0 +1,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();
|
||||
|
||||
while (TRUE) {
|
||||
gdispFillCircle(tpReadX(), tpReadY(), 3, Black);
|
||||
|
||||
chThdSleepMilliseconds(100);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user