ubitxv6/touch.h
2020-02-09 18:41:13 -08:00

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);