| Line | Branch | Decision | Exec | Source |
|---|---|---|---|---|
| 1 | /** | |||
| 2 | * @file allsensors.cpp | |||
| 3 | * @brief | |||
| 4 | * | |||
| 5 | * | |||
| 6 | * @date Nov 15, 2013 | |||
| 7 | * @author Andrey Belomutskiy, (c) 2012-2020 | |||
| 8 | */ | |||
| 9 | ||||
| 10 | #include "pch.h" | |||
| 11 | ||||
| 12 | ButtonDebounce acDebounce("ac_switch"); | |||
| 13 | ||||
| 14 | 591 | void initSensors() { | ||
| 15 | 591 | initMapDecoder(); | ||
| 16 | 591 | acDebounce.init(15, engineConfiguration->acSwitch, engineConfiguration->acSwitchMode); | ||
| 17 | 591 | } | ||
| 18 | ||||
| 19 | 90 | bool getAcToggle() { | ||
| 20 | 90 | return acDebounce.readPinState(); | ||
| 21 | } | |||
| 22 | ||||
| 23 | 1124 | bool hasAcToggle() { | ||
| 24 | 1124 | return isBrainPinValid(engineConfiguration->acSwitch); | ||
| 25 | } | |||
| 26 |