Add beep at AUTO_CUT toggle and CUT trigger

cutter.hpp:
  change from enum to enum class
control.cpp:
   add beeping to cut buttons
This commit is contained in:
jonny_ji7 2022-09-19 13:55:29 +02:00
parent 992d852189
commit 9b386c3d73
2 changed files with 13 additions and 1 deletions

View File

@ -194,11 +194,21 @@ void task_control(void *pvParameter)
//--- CUT switch ---
//start cut cycle immediately
if (SW_CUT.risingEdge) {
cutter_start();
buzzer.beep(1, 70, 50);
}
//--- beep at AUTO_CUT toggle ---
if (SW_AUTO_CUT.risingEdge){
buzzer.beep(2, 100, 50);
} else if (SW_AUTO_CUT.fallingEdge) {
buzzer.beep(1, 400, 50);
}
//--- manual mode ---
//switch to manual motor control (2 buttons + poti)
if ( SW_PRESET2.state && (SW_PRESET1.state || SW_PRESET3.state) && controlState != systemState_t::MANUAL ) {

View File

@ -1,3 +1,5 @@
#pragma once
extern "C"
{
#include <stdio.h>
@ -11,7 +13,7 @@ extern "C"
//--- variables ---
//enum for state of cutter
typedef enum cutter_state_t {IDLE, START, CUTTING, CANCELED, TIMEOUT} cutter_state_t;
enum class cutter_state_t {IDLE, START, CUTTING, CANCELED, TIMEOUT};
//string for logging the state name
extern const char* cutter_stateStr[5];