
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
Clp.h
- Committer:
- kevencastro7
- Date:
- 2017-12-15
- Revision:
- 2:835c883d81b0
File content as of revision 2:835c883d81b0:
#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