rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
ac_control.h
Go to the documentation of this file.
1#pragma once
2
4#include <rusefi/timer.h>
5
6class AcController : public ac_control_s, public EngineModule {
7public:
8 constexpr static int PRESSURE_DEADBAND_WIDTH = 5;
9
11
12 void onSlowCallback() override;
13
14 virtual bool isAcEnabled() const;
15
17
18private:
19 bool getAcState();
20
22};
Timer m_timeSinceNoAc
Definition ac_control.h:21
virtual bool isAcEnabled() const
Timer timeSinceStateChange
Definition ac_control.h:16
void onSlowCallback() override
static constexpr int PRESSURE_DEADBAND_WIDTH
Definition ac_control.h:8
bool getAcState()