| 12345678910111213141516 |
- /*
- * Status.h
- *
- * Created on: 28.01.2022
- * Author: FSmilari
- */
-
- #ifndef STATUS_H_
- #define STATUS_H_
-
- enum Status {
- INITIALIZATION, TOOL_CHANGE, CONFIGURATION, NULLING, NULLING_TLS, IDLE, DIVING, MOVING_ELEVATOR, RELEASE_SWITCH
- };
-
-
- #endif /* STATUS_H_ */
|