aaaaaaaaa

Dependencies:   QEI mbed

Fork of MainBoard2018_Auto_Master_A_new by Akihiro Nakabayashi

LED/LED.h

Committer:
kishibekairohan
Date:
2018-10-21
Revision:
14:dfcec98f5aa9
Parent:
0:669ef71cba68

File content as of revision 14:dfcec98f5aa9:

#ifndef LED_H_
#define LED_H_

#include "mbed.h"
#include <stdint.h>

namespace LED {
    extern DigitalOut boardLED[];

    #define LED_ON  0
    #define LED_OFF 1

    #define LED_DEBUG0_PIN  PC_11
    #define LED_DEBUG1_PIN  PC_10
    #define LED_DEBUG2_PIN  PC_12
    #define LED_MU_PIN      PC_13

    #define LED_DEBUG0  LED::boardLED[0]
    #define LED_DEBUG1  LED::boardLED[1]
    #define LED_DEBUG2  LED::boardLED[2]
    #define LED_MU      LED::boardLED[3]
    
    class LED {
        public:
        static void Initialize();
    };
}

#endif