
Coiling jig experiment with buttons for coiling, annealing and testing.
Dependencies: TextLCD
SETUP.hpp@0:7795c79c9480, 2018-12-21 (annotated)
- Committer:
- yphilippou
- Date:
- Fri Dec 21 15:46:23 2018 +0000
- Revision:
- 0:7795c79c9480
Buttons added.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yphilippou | 0:7795c79c9480 | 1 | /* |
yphilippou | 0:7795c79c9480 | 2 | Setup file for the main |
yphilippou | 0:7795c79c9480 | 3 | */ |
yphilippou | 0:7795c79c9480 | 4 | |
yphilippou | 0:7795c79c9480 | 5 | #ifndef SETUP_HPP//Header Guards Prevents Multiple includes |
yphilippou | 0:7795c79c9480 | 6 | #define SETUP_HPP |
yphilippou | 0:7795c79c9480 | 7 | |
yphilippou | 0:7795c79c9480 | 8 | //Libraries and header includes |
yphilippou | 0:7795c79c9480 | 9 | #include "rtos.h" |
yphilippou | 0:7795c79c9480 | 10 | |
yphilippou | 0:7795c79c9480 | 11 | #include "STEPPER_MOTOR.hpp" |
yphilippou | 0:7795c79c9480 | 12 | |
yphilippou | 0:7795c79c9480 | 13 | //Time definitions |
yphilippou | 0:7795c79c9480 | 14 | |
yphilippou | 0:7795c79c9480 | 15 | static STEPPER_MOTOR STEPPER_MOTOR_1(D15,D14,D13,D12); |
yphilippou | 0:7795c79c9480 | 16 | #endif |