LPC824専用プログラム

Dependencies:   Ping SDFileSystem mbed-src

main.cpp

Committer:
lilac0112_1
Date:
2016-01-12
Revision:
5:afba6bf6c408
Parent:
0:2f48b11b154f
Child:
6:79dc74e4926a

File content as of revision 5:afba6bf6c408:

#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_System();
        #endif /*IR_SENSOR*/
    }
}