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.
Revision 4:140d6bff4860, committed 2016-10-26
- Comitter:
- Generic
- Date:
- Wed Oct 26 10:39:37 2016 +0000
- Parent:
- 3:3e240b27bd4a
- Commit message:
- Updated
Changed in this revision
| ResistiveTouchController.hpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 3e240b27bd4a -r 140d6bff4860 ResistiveTouchController.hpp
--- a/ResistiveTouchController.hpp Tue Oct 25 09:20:41 2016 +0200
+++ b/ResistiveTouchController.hpp Wed Oct 26 10:39:37 2016 +0000
@@ -82,23 +82,23 @@
/**
* Calibrates the screen from 3 points.
*
- * @param _t[3][2] : Array containing the 3 raw data points
+ * @param t[3][2] : Array containing the 3 raw data points
* <ul>
- * <li>_t[0][0] = Raw x value at 90% of x</li>
- * <li>_t[1][0] = Raw x value at 50% of x/li>
- * <li>_t[2][0] = Raw x value at 10% of x/li>
+ * <li>t[0][0] = Raw x value at 90% of x</li>
+ * <li>t[1][0] = Raw x value at 50% of x</li>
+ * <li>t[2][0] = Raw x value at 10% of x</li>
* </ul>
* <ul>
- * <li>_t[0][1] = Raw y value at 50% of y</li>
- * <li>_t[1][1] = Raw y value at 90% of y</li>
- * <li>_t[2][1] = Raw y value at 10% of y</li>
+ * <li>t[0][1] = Raw y value at 50% of y</li>
+ * <li>t[1][1] = Raw y value at 90% of y</li>
+ * <li>t[2][1] = Raw y value at 10% of y</li>
* </ul>
* -------------------------------------------------------
- * @param _d[3][2] : Array containing the 3 digital points
+ * @param d[3][2] : Array containing the 3 digital points
* <ul>
- * <li>_d[0][0] = Digital x value at 90% of x</li>
- * <li>_d[1][0] = Digital x value at 50% of x</li>
- * <li>_d[2][0] = Digital x value at 10% of x</li>
+ * <li>d[0][0] = Digital x value at 90% of x</li>
+ * <li>d[1][0] = Digital x value at 50% of x</li>
+ * <li>d[2][0] = Digital x value at 10% of x</li>
* </ul>
* <ul>
* <li>_d[0][1] = Digital y value at 50% of y</li>