array of channels and config stuff
This commit is contained in:
@ -9,8 +9,13 @@ Thermometer::Thermometer() {
|
||||
}
|
||||
|
||||
|
||||
void Thermometer::begin(int eepromAddr) {
|
||||
void Thermometer::begin(bool initializeConfig, int eepromAddr) {
|
||||
m_eepromAddr = eepromAddr;
|
||||
|
||||
if (initializeConfig) {
|
||||
// set default values
|
||||
}
|
||||
|
||||
m_lastSmoothedTemperature = INVALID_TEMPERATURE;
|
||||
m_alpha = 0.1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user