Zhen Liu
/
HW3_P1
HW3_p1
Fork of Ticker_HelloWorld by
main.cpp
- Committer:
- lzzcd001
- Date:
- 2015-02-23
- Revision:
- 2:a52bfb4f737b
- Parent:
- 0:5014bf742e9b
File content as of revision 2:a52bfb4f737b:
#include "mbed.h" Ticker flipper1; Ticker flipper2; Ticker flipper3; Ticker flipper4; DigitalOut led1(LED1); DigitalOut led2(LED2); DigitalOut led3(LED3); DigitalOut led4(LED4); void flip1() { led1 = !led1; } void flip2() { led2 = !led2; } void flip3() { led3 = !led3; } void flip4() { led4 = !led4; } int main() { led1 = 1; led2 = 1; led3 = 1; led4 = 1; flipper1.attach(&flip1, 1.0); // the address of the function to be attached (flip) and the interval (2 seconds) flipper2.attach(&flip2, 2.0); flipper3.attach(&flip3, 3.0); flipper4.attach(&flip4, 4.0); // spin in a main loop. flipper will interrupt it to call flip while(1) { } }