Lahis Almeida / Mbed 2 deprecated CNC_CONTROLLER

Dependencies:   mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Debug.h Source File

Debug.h

00001 #ifndef DEBUG_H
00002 #define DEBUG_H
00003 #include "mbed.h"
00004 
00005 #define HIGH  1
00006 #define LOW   0
00007 
00008 class Debug{
00009     
00010     public:
00011             Debug();
00012             void debugPin(int, int);
00013     
00014             DigitalOut *debugPin_1;
00015             DigitalOut *debugPin_2;
00016             DigitalOut *debugPin_3;
00017             DigitalOut *debugPin_4;
00018 
00019 };
00020 
00021 #endif