/* * This file is part of the "bluetoothheater" distribution * (https://gitlab.com/mrjones.id.au/bluetoothheater) * * Copyright (C) 2018 Ray Jones * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #include "Arduino.h" #include "NVStorage.h" CHeaterStorage::CHeaterStorage() { calValues.Pmin = 14; calValues.Pmax = 40; calValues.Fmin = 1500; calValues.Fmax = 4500; calValues.ThermostatMode = 1; calValues.setTemperature = 22; } float CHeaterStorage::getPmin() { return float(calValues.Pmin) * 0.1f; } float CHeaterStorage::getPmax() { return float(calValues.Pmax) * 0.1f; } unsigned short CHeaterStorage::getFmin() { return calValues.Fmin; } unsigned short CHeaterStorage::getFmax() { return calValues.Fmax; } unsigned char CHeaterStorage::getTemperature() { return calValues.setTemperature; } unsigned char CHeaterStorage::getThermostatMode() { return calValues.ThermostatMode; } void CHeaterStorage::setPmin(float val) { uint8_t cVal = (uint8_t)(val * 10.f + 0.5f); calValues.Pmin = cVal; } void CHeaterStorage::setPmax(float val) { uint8_t cVal = (uint8_t)(val * 10.f + 0.5f); calValues.Pmax = cVal; } void CHeaterStorage::setFmin(unsigned short val) { calValues.Fmin = val; } void CHeaterStorage::setFmax(unsigned short val) { calValues.Fmax = val; } void CHeaterStorage::setTemperature(unsigned char val) { calValues.setTemperature = val; } void CHeaterStorage::setThermostatMode(unsigned char val) { calValues.ThermostatMode = val; } /////////////////////////////////////////////////////////////////////////////////////// // ESP32 // #ifdef ESP32 CESP32HeaterStorage::CESP32HeaterStorage() { } CESP32HeaterStorage::~CESP32HeaterStorage() { preferences.end(); } void CESP32HeaterStorage::init() { preferences.begin("dieselheater", false); } void CESP32HeaterStorage::load() { preferences.getBytes("calValues", &calValues, sizeof(sNVStore)); } void CESP32HeaterStorage::save() { preferences.putBytes("calValues", &calValues, sizeof(sNVStore)); } #endif // ESP32