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.
EventArg.cpp@1:aed433d882c9, 2015-01-21 (annotated)
- Committer:
- YosukeK
- Date:
- Wed Jan 21 16:20:12 2015 +0000
- Revision:
- 1:aed433d882c9
- Parent:
- 0:32eb0835b5a3
Second commit.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| YosukeK | 0:32eb0835b5a3 | 1 | #include "mbed.h" |
| YosukeK | 0:32eb0835b5a3 | 2 | #include "EventArg.h" |
| YosukeK | 0:32eb0835b5a3 | 3 | |
| YosukeK | 0:32eb0835b5a3 | 4 | /** |
| YosukeK | 0:32eb0835b5a3 | 5 | * |
| YosukeK | 0:32eb0835b5a3 | 6 | */ |
| YosukeK | 0:32eb0835b5a3 | 7 | EventArg::EventArg() { |
| YosukeK | 0:32eb0835b5a3 | 8 | leftWheetVelocity = 0; |
| YosukeK | 0:32eb0835b5a3 | 9 | rightWheelVelocity = 0; |
| YosukeK | 0:32eb0835b5a3 | 10 | } |
| YosukeK | 0:32eb0835b5a3 | 11 | |
| YosukeK | 0:32eb0835b5a3 | 12 | EventArg::~EventArg() { |
| YosukeK | 0:32eb0835b5a3 | 13 | |
| YosukeK | 0:32eb0835b5a3 | 14 | } |