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

Committer:
kevencastro7
Date:
Fri Dec 15 19:40:41 2017 +0000
Revision:
2:835c883d81b0
Parent:
0:7cedfb720712
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.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
waspSalander 0:7cedfb720712 1 #ifndef DEBUG_H
waspSalander 0:7cedfb720712 2 #define DEBUG_H
waspSalander 0:7cedfb720712 3 #include "mbed.h"
waspSalander 0:7cedfb720712 4
waspSalander 0:7cedfb720712 5 #define HIGH 1
waspSalander 0:7cedfb720712 6 #define LOW 0
waspSalander 0:7cedfb720712 7
waspSalander 0:7cedfb720712 8 class Debug{
waspSalander 0:7cedfb720712 9
waspSalander 0:7cedfb720712 10 public:
waspSalander 0:7cedfb720712 11 Debug();
waspSalander 0:7cedfb720712 12 void debugPin(int, int);
waspSalander 0:7cedfb720712 13
waspSalander 0:7cedfb720712 14 DigitalOut *debugPin_1;
waspSalander 0:7cedfb720712 15 DigitalOut *debugPin_2;
waspSalander 0:7cedfb720712 16 DigitalOut *debugPin_3;
waspSalander 0:7cedfb720712 17 DigitalOut *debugPin_4;
waspSalander 0:7cedfb720712 18
waspSalander 0:7cedfb720712 19 };
waspSalander 0:7cedfb720712 20
waspSalander 0:7cedfb720712 21 #endif