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: mbed
main.cpp@0:ebda1df8a43e, 2020-06-13 (annotated)
- Committer:
- missa_sami
- Date:
- Sat Jun 13 14:16:45 2020 +0000
- Revision:
- 0:ebda1df8a43e
kiosque 1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
missa_sami | 0:ebda1df8a43e | 1 | #include "mbed.h" |
missa_sami | 0:ebda1df8a43e | 2 | #include "motor.h" |
missa_sami | 0:ebda1df8a43e | 3 | |
missa_sami | 0:ebda1df8a43e | 4 | Motor mon_motor(A1,A2,A5,A6); |
missa_sami | 0:ebda1df8a43e | 5 | |
missa_sami | 0:ebda1df8a43e | 6 | int main() { |
missa_sami | 0:ebda1df8a43e | 7 | mon_motor.RunInfinite(CLOCKWISE); |
missa_sami | 0:ebda1df8a43e | 8 | } |