11 lines
288 B
C++
11 lines
288 B
C++
#include "start_stop.h"
|
|
#include "engine.h"
|
|
|
|
EXTERN_ENGINE;
|
|
|
|
ButtonDebounce startStopButtonDebounce;
|
|
|
|
void initStartStopButton(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|
startStopButtonDebounce.init(CONFIG(startCrankingDuration), &CONFIG(startStopButtonPin), &CONFIG(startStopButtonMode));
|
|
}
|