This is a remote control tester, it uses a CNC, Ethernet Communication with a JAVAFX interface and a PLC in order to control some valves.

Dependencies:   EthernetInterface mbed-rtos mbed

Fork of CNC_CONTROLLER by Lahis Almeida

Debug.h

Committer:
kevencastro7
Date:
2017-12-15
Revision:
2:835c883d81b0
Parent:
0:7cedfb720712

File content as of revision 2:835c883d81b0:

#ifndef DEBUG_H
#define DEBUG_H
#include "mbed.h"

#define HIGH  1
#define LOW   0

class Debug{
    
    public:
            Debug();
            void debugPin(int, int);
    
            DigitalOut *debugPin_1;
            DigitalOut *debugPin_2;
            DigitalOut *debugPin_3;
            DigitalOut *debugPin_4;

};

#endif