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.
Fork of TDP3_MovementControl by
main.cpp@0:30183794e491, 2018-10-15 (annotated)
- Committer:
- Nicolaemf
- Date:
- Mon Oct 15 10:01:05 2018 +0000
- Revision:
- 0:30183794e491
- Child:
- 1:9c7329b9c23f
Basic blinky tdp project test;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Nicolaemf | 0:30183794e491 | 1 | #include "mbed.h" |
| Nicolaemf | 0:30183794e491 | 2 | |
| Nicolaemf | 0:30183794e491 | 3 | DigitalOut myled(LED1); |
| Nicolaemf | 0:30183794e491 | 4 | |
| Nicolaemf | 0:30183794e491 | 5 | int main() { |
| Nicolaemf | 0:30183794e491 | 6 | while(1) { |
| Nicolaemf | 0:30183794e491 | 7 | myled = 1; |
| Nicolaemf | 0:30183794e491 | 8 | wait(0.2); |
| Nicolaemf | 0:30183794e491 | 9 | myled = 0; |
| Nicolaemf | 0:30183794e491 | 10 | wait(0.2); |
| Nicolaemf | 0:30183794e491 | 11 | } |
| Nicolaemf | 0:30183794e491 | 12 | } |
