2024-05-08 19:14:54 -07:00
|
|
|
// file start_stop.h
|
|
|
|
|
2020-09-09 00:22:15 -07:00
|
|
|
#pragma once
|
|
|
|
|
2024-05-08 19:14:54 -07:00
|
|
|
struct StartStopState {
|
|
|
|
ButtonDebounce startStopButtonDebounce{"start_button"};
|
|
|
|
Timer timeSinceIgnitionPower;
|
|
|
|
Timer startStopStateLastPush;
|
|
|
|
|
|
|
|
bool isFirstTime = true;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2024-10-13 16:18:42 -07:00
|
|
|
void doStartCranking();
|
2021-11-16 01:15:29 -08:00
|
|
|
void initStartStopButton();
|