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

Revision:
0:7cedfb720712
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Debug.h	Wed Jun 07 13:31:02 2017 +0000
@@ -0,0 +1,21 @@
+#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