- Add state machine for coordinated movement (REV/FWD toggle) - Each motor stops independently on stall detection - Add HOME BOTH button in web UI with state-based styling - Add /homing endpoint for programmatic control - Update /status endpoint with coordinated state info - Create homing.h header for function declarations
11 lines
234 B
C
11 lines
234 B
C
#ifndef HOMING_H
|
|
#define HOMING_H
|
|
|
|
// Coordinated movement functions (defined in main.cpp)
|
|
int toggleCoordinatedMovement(int speed);
|
|
void stopCoordinatedMovement();
|
|
int getCoordinatedState();
|
|
bool isCoordinatedMovementDone();
|
|
|
|
#endif
|