Add cutter stop via btn; Prevent cut while winding
Add conditions to CUT button pressed case - when cutter already on -> stop - when in state where motor is active -> dont start - else: error
This commit is contained in:
parent
bb7cdddc6c
commit
826dd983c4
@ -208,8 +208,21 @@ void task_control(void *pvParameter)
|
|||||||
//--- CUT switch ---
|
//--- CUT switch ---
|
||||||
//start cut cycle immediately
|
//start cut cycle immediately
|
||||||
if (SW_CUT.risingEdge) {
|
if (SW_CUT.risingEdge) {
|
||||||
cutter_start();
|
//stop cutter if already running
|
||||||
buzzer.beep(1, 70, 50);
|
if (cutter_isRunning()) {
|
||||||
|
cutter_stop();
|
||||||
|
buzzer.beep(1, 600, 0);
|
||||||
|
}
|
||||||
|
//start cutter when motor not active
|
||||||
|
else if (controlState != systemState_t::WINDING_START //TODO use vfd state here?
|
||||||
|
&& controlState != systemState_t::WINDING) {
|
||||||
|
cutter_start();
|
||||||
|
buzzer.beep(1, 70, 50);
|
||||||
|
}
|
||||||
|
//error cant cut while motor is on
|
||||||
|
else {
|
||||||
|
buzzer.beep(6, 70, 50);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user