Rene Greiner / Mbed 2 deprecated FunctionPointers

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "FunctionPointers.h"
00003 
00004 DigitalOut myled(LED1);
00005 FPtr1ArgT<void,int> fp;
00006 
00007 int main() {
00008   fp.attach( myled, &DigitalOut::write);
00009     while(1) {
00010         fp(1);
00011         wait(0.2);
00012         fp(0);
00013         wait(0.2);
00014     }
00015 }