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
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
kevencastro7 2:835c883d81b0 1 #ifndef CLP_H
kevencastro7 2:835c883d81b0 2 #define CLP_H
kevencastro7 2:835c883d81b0 3 #include "mbed.h"
kevencastro7 2:835c883d81b0 4
kevencastro7 2:835c883d81b0 5
kevencastro7 2:835c883d81b0 6 class Clp{
kevencastro7 2:835c883d81b0 7 public:
kevencastro7 2:835c883d81b0 8 Clp(PinName,PinName,PinName,PinName,PinName);
kevencastro7 2:835c883d81b0 9 int ReceiveCnc();
kevencastro7 2:835c883d81b0 10 void TransmitCnc();
kevencastro7 2:835c883d81b0 11 int ReceiveElevator();
kevencastro7 2:835c883d81b0 12 void TransmitElevator(int);
kevencastro7 2:835c883d81b0 13 private:
kevencastro7 2:835c883d81b0 14 DigitalIn *receiverCnc;
kevencastro7 2:835c883d81b0 15 DigitalOut *transmitterCnc;
kevencastro7 2:835c883d81b0 16 DigitalIn *receiverElevator;
kevencastro7 2:835c883d81b0 17 DigitalOut *transmitterElevatorEnable;
kevencastro7 2:835c883d81b0 18 DigitalOut *transmitterElevatorSign;
kevencastro7 2:835c883d81b0 19
kevencastro7 2:835c883d81b0 20 };
kevencastro7 2:835c883d81b0 21 #endif