Hiroshi Yamaguchi / Mbed 2 deprecated XBeeExamples

Dependencies:   mbed XBee mbed-rtos

main.cpp

Committer:
yamaguch
Date:
2012-09-20
Revision:
6:d456c203adb6
Parent:
0:34e0352d7396
Child:
8:a2b2454689bf

File content as of revision 6:d456c203adb6:

#include "functions.h"

int main() {
    for (int i = 1; functions[i].name; i++)
        printf("%2d: %s\n", i, functions[i]);

    printf("Select => ");
    int n;
    scanf("%d", &n);
    printf("starting \"%d: %s\"\n", n,  functions[n].name);
    
    functions[n].func();
}