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 TW_Ex_9_1 by
main.cpp
- Committer:
- CSTritt
- Date:
- 2017-10-09
- Revision:
- 1:c005988842c9
- Parent:
- 0:3151531e9a31
File content as of revision 1:c005988842c9:
/*
Project: TW_Ex_9_9
File: main.cpp
An example similar to T&W example 9.9. imple demo of "Ticker". Replicates
behaviour of first led flashing program.
Modified by Dr. C. S. Tritt
Last revised: 10/8/17 (v. 1.0)
*/
#include "mbed.h"
void led_switch(void); // Ticker callback declaration.
Ticker time_up; // Define a Ticker named "time_up."
DigitalOut myled(D4); // Blue LED junction.
int main(){
time_up.attach(&led_switch, 0.2); // Initialize Ticker. 0.2 s interval.
while(1) {} // Sit in a loop doing nothing, waiting for Ticker interrupt.
}
void led_switch() { // Ticker callback.
myled=!myled;
}
