mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-07 15:27:18 -05:00
11 lines
244 B
C
11 lines
244 B
C
|
#pragma once
|
||
|
|
||
|
#include "point.h"
|
||
|
|
||
|
void initTouch();
|
||
|
|
||
|
//Returns true if touched, false otherwise
|
||
|
bool readTouch(Point *const touch_point_out);
|
||
|
|
||
|
//Applies the touch calibration the point passed in
|
||
|
void scaleTouch(Point *const touch_point_in_out);
|