Advertisement
exnon

Joystick ISSP2

Nov 26th, 2020 (edited)
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.50 KB | None | 0 0
  1.     int32_t recentData[2];
  2.     acc_gyro->get_g_axes(axes);
  3.     recentData[0] = axes[0];
  4.     recentData[1] = axes[1];
  5. while (true){
  6.         acc_gyro->get_g_axes(axes);
  7.         xDiff = axes[0]-recentData[0];
  8.         if (xDiff > 100){
  9.             joyX++;
  10.         }
  11.             else if (xDiff < -100){
  12.                 joyX--;
  13.             }
  14.                 yDiff = axes[1]-recentData[1];
  15.         if (yDiff < -2){
  16.             joyY--;
  17.         }
  18.             else if (yDiff > 2){
  19.                 joyY++;
  20.             }
  21.             printf("Joystick x und y Ausgabe:  %d, %d.\r\n", joyX, joyY);
  22.         recentData[0] = axes[0];
  23.         recentData[1] = axes[1];}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement