You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
opentrackpadcontroller/test/test_joystick/test_touch_joystick.cpp

61 lines
1.2 KiB
C++

#include "touch_joystick.h"
#include <stdio.h>
int main()
{
printf("\n");
int32_t pos_x = 2000;
int32_t pos_y = 2000;
int32_t pos_r = 1000;
int16_t usb_x = 0;
int16_t usb_y = 0;
int16_t usb_r = 0x7FFF;
float pos2usb = (float)usb_r / pos_r;
TouchJoystick tjoystick(pos_x, pos_y, pos_r, usb_x, usb_y, usb_r);
int32_t touch_x = 2000;
int32_t touch_y = 1000;
int16_t x;
int16_t y;
TouchControl* tcontrol = &tjoystick;
int8_t res = tcontrol->touch(0, touch_x, touch_y);
if (res > 0)
{
switch(tcontrol->getControlType())
{
case TouchControl::CT_NONE:
printf("CT_NONE\n");
break;
case TouchControl::CT_JOYSTICK:
x = ((TouchJoystick*)tcontrol)->getX();
y = ((TouchJoystick*)tcontrol)->getY();
printf("CT_JOYSTICK (%04X, %04X)\n", x, y);
printf("CT_JOYSTICK (%i, %i)\n", x, y);
break;
}
}
else
if (res < 0)
{
printf("Impossible Error\n");
}
else
{
printf("Touch out of bounds\n");
}
printf("\n");
return 0;
}