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:
2:835c883d81b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Clp.h	Fri Dec 15 19:40:41 2017 +0000
@@ -0,0 +1,21 @@
+#ifndef CLP_H
+#define CLP_H
+#include "mbed.h"
+
+
+class Clp{
+    public:
+            Clp(PinName,PinName,PinName,PinName,PinName);
+			int ReceiveCnc();
+			void TransmitCnc();
+			int ReceiveElevator();
+			void TransmitElevator(int);
+		private:
+         DigitalIn *receiverCnc;
+         DigitalOut *transmitterCnc;
+         DigitalIn *receiverElevator;
+         DigitalOut *transmitterElevatorEnable;
+         DigitalOut *transmitterElevatorSign;
+
+};
+#endif