Compare commits

..

No commits in common. "f33ed415a8ad0403e546c3250b788b21fe6fc8e6" and "2d17efd1dc017cc26adf37885094f93df33084e2" have entirely different histories.

3 changed files with 142 additions and 1347 deletions

File diff suppressed because it is too large Load Diff

View File

@ -34,8 +34,6 @@ _triggerLevelOff(false)
_rOffsetMap = NULL;
_resistanceMap = NULL;
}
_adc.begin();
}
MeasureUnit::~MeasureUnit()

View File

@ -11,7 +11,7 @@ class MeasureUnit
enum ERROR {OK = 0, MALLOC_ERR = 1};
MeasureUnit(uint8_t *analogInput, uint16_t thermistorCount, uint64_t precResistor, ThermistorSetting thermistorSetting, Adc &adc);
~MeasureUnit();
void init();
void init(){_adc.begin();}
void setGlobalTempOffset(double offset);
void levelTemperaturesOff();
double getGlobalTempOffset();