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-rtos mbed
Fork of Totaleprogramma by
utils.h@0:345f76c72b9a, 2015-02-25 (annotated)
- Committer:
- 347467
- Date:
- Wed Feb 25 08:25:16 2015 +0000
- Revision:
- 0:345f76c72b9a
Nog niet kloar;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| 347467 | 0:345f76c72b9a | 1 | |
| 347467 | 0:345f76c72b9a | 2 | #ifndef utilshhh |
| 347467 | 0:345f76c72b9a | 3 | #define utilshhh |
| 347467 | 0:345f76c72b9a | 4 | |
| 347467 | 0:345f76c72b9a | 5 | |
| 347467 | 0:345f76c72b9a | 6 | double ghettoFloor(double d); |
| 347467 | 0:345f76c72b9a | 7 | double round(double d); |
| 347467 | 0:345f76c72b9a | 8 | |
| 347467 | 0:345f76c72b9a | 9 | float xpadNormalizeAnalog(int x); |
| 347467 | 0:345f76c72b9a | 10 | float xpadNormalizeTrigger(int x); |
| 347467 | 0:345f76c72b9a | 11 | struct Xbox360ControllerState{ |
| 347467 | 0:345f76c72b9a | 12 | int buttons; |
| 347467 | 0:345f76c72b9a | 13 | int analogLeftX; |
| 347467 | 0:345f76c72b9a | 14 | int analogLeftY; |
| 347467 | 0:345f76c72b9a | 15 | int analogRightX; |
| 347467 | 0:345f76c72b9a | 16 | int analogRightY; |
| 347467 | 0:345f76c72b9a | 17 | int triggerLeft; |
| 347467 | 0:345f76c72b9a | 18 | int triggerRight; |
| 347467 | 0:345f76c72b9a | 19 | Xbox360ControllerState(){}; |
| 347467 | 0:345f76c72b9a | 20 | Xbox360ControllerState(int buttons, int stick_lx, int stick_ly, int stick_rx, int stick_ry, int trigger_l, int trigger_r) |
| 347467 | 0:345f76c72b9a | 21 | : buttons(buttons), analogLeftX(stick_lx), analogLeftY(stick_ly), analogRightX(stick_rx), analogRightY(stick_ry), triggerLeft(trigger_l), triggerRight(trigger_r) |
| 347467 | 0:345f76c72b9a | 22 | {} |
| 347467 | 0:345f76c72b9a | 23 | }; |
| 347467 | 0:345f76c72b9a | 24 | |
| 347467 | 0:345f76c72b9a | 25 | |
| 347467 | 0:345f76c72b9a | 26 | #endif |
