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@0:32eb0835b5a3, 2015-01-20 (annotated)
- Committer:
- YosukeK
- Date:
- Tue Jan 20 15:58:19 2015 +0000
- Revision:
- 0:32eb0835b5a3
First 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 | } |