rusefi/firmware/controllers/start_stop.h

16 lines
267 B
C
Raw Normal View History

// file start_stop.h
#pragma once
struct StartStopState {
ButtonDebounce startStopButtonDebounce{"start_button"};
Timer timeSinceIgnitionPower;
Timer startStopStateLastPush;
bool isFirstTime = true;
};
2024-10-13 16:18:42 -07:00
void doStartCranking();
void initStartStopButton();