
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
Debug.h@0:7cedfb720712, 2017-06-07 (annotated)
- Committer:
- waspSalander
- Date:
- Wed Jun 07 13:31:02 2017 +0000
- Revision:
- 0:7cedfb720712
CNC_Controller (2 mechanical axis)
Who changed what in which revision?
User | Revision | Line number | New 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 |