Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: USBHost USBHostXpad mbed
Fork of USBHostXpad_HelloWorld by
Revision 14:9a82555f7a3b, committed 2016-03-09
- Comitter:
- JakBlackburn
- Date:
- Wed Mar 09 15:45:20 2016 +0000
- Parent:
- 13:015ec003c063
- Commit message:
- fixed typo in data breakdown
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Wed Mar 09 11:03:36 2016 +0000
+++ b/main.cpp Wed Mar 09 15:45:20 2016 +0000
@@ -55,21 +55,21 @@
/**
@namespace LSX
@brief float for storing the value of the Left Analogue Stick's X axis
-@brief XPad returns a value between -32768(down) and 32767(up)
+@brief XPad returns a value between -32768(left) and 32767(right)
@there is a deadzone between around -4000 and 4000 where the value returned is not consistent when in the fixed position(assummed 0,0 point)
*/
float LSX=0x0;
/**
@namespace RSY
@brief float for storing the value of the Right Analogue Stick's Y axis
-@brief XPad returns a value between -32768(down) and 32767(up)
+@brief XPad returns a value between -32768() and 32767(up)
@there is a deadzone between around -4000 and 4000 where the value returned is not consistent when in the fixed position(assummed 0,0 point)
*/
float RSY=0x0;
/**
@namespace RSX
@brief float for storing the value of the Right Analogue Stick's X axis
-@brief XPad returns a value between -32768(down) and 32767(up)
+@brief XPad returns a value between -32768(left) and 32767(right)
@there is a deadzone between around -4000 and 4000 where the value returned is not consistent when in the fixed position(assummed 0,0 point)
*/
float RSX=0x0;
@@ -127,7 +127,7 @@
RSX=stick_rx*sN;
Lt=trigger_l*tN;
Rt=trigger_r*tN;
- //XpadValues(buttons, stick_lx, stick_ly, stick_rx, stick_ry, trigger_l, trigger_r);
+ XpadValues(buttons, stick_lx, stick_ly, stick_rx, stick_ry, trigger_l, trigger_r);
poll = 0;
}
