LPC824専用プログラム

Dependencies:   Ping SDFileSystem mbed-src

main.cpp

Committer:
lilac0112_1
Date:
2016-01-12
Revision:
6:79dc74e4926a
Parent:
5:afba6bf6c408
Child:
7:9b1ac6fbf32c

File content as of revision 6:79dc74e4926a:

#include "mbed.h"
#include "extern.h"
#include "main.h"
int main() {
    nucleo.reply(0x00);
    while(1) {
        #ifdef SD_CARD
            Sd_System();
        #endif /*SD_CARD*/
        
        #ifdef ULTRA_SONIC
            Usw_System();
        #endif /*ULTRA_SONIC*/
        
        #ifdef COLOR_SENSOR
            Color_System();
        #endif /*COLOR_SENSOR*/
        
        #ifdef IR_SENSOR
            Ir_System2();
        #endif /*IR_SENSOR*/
    }
}