2019-07-24 09:25:07 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the "bluetoothheater" distribution
|
|
|
|
* (https://gitlab.com/mrjones.id.au/bluetoothheater)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Ray Jones <ray@mrjones.id.au>
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BTC_RTC_STORE_H__
|
|
|
|
#define __BTC_RTC_STORE_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
class CRTC_Store {
|
2019-07-25 11:27:57 +00:00
|
|
|
bool _accessed[4]; // [0] - bytes 0..3, [1] byte 4, [2] byte 5, [3] byte 6
|
|
|
|
float _fuelgauge; // Byte0..Byte3
|
|
|
|
uint8_t _demandDegC; // Byte4[0..5]
|
|
|
|
bool _BootInit; // Byte4[6]
|
|
|
|
bool _CyclicEngaged; // Byte4[7]
|
|
|
|
uint8_t _demandPump; // Byte5[0..5]
|
|
|
|
uint8_t _RunTime; // Byte6[0..4]
|
|
|
|
uint8_t _GlowTime; // Byte6[5..7]
|
2019-07-24 09:25:07 +00:00
|
|
|
void _ReadAndUnpackByte4();
|
|
|
|
void _PackAndSaveByte4();
|
|
|
|
void _ReadAndUnpackByte5();
|
|
|
|
void _PackAndSaveByte5();
|
|
|
|
void _ReadAndUnpackByte6();
|
|
|
|
void _PackAndSaveByte6();
|
|
|
|
public:
|
|
|
|
CRTC_Store();
|
|
|
|
void begin();
|
|
|
|
void setFuelGauge(float val);
|
|
|
|
void setDesiredTemp(uint8_t val);
|
|
|
|
void setDesiredPump(uint8_t val);
|
|
|
|
bool incRunTime();
|
|
|
|
bool incGlowTime();
|
|
|
|
void setCyclicEngaged(bool _CyclicEngaged);
|
2019-07-25 11:27:57 +00:00
|
|
|
void setBootInit(bool val = true);
|
2019-07-24 09:25:07 +00:00
|
|
|
float getFuelGauge();
|
|
|
|
uint8_t getDesiredTemp();
|
|
|
|
uint8_t getDesiredPump();
|
|
|
|
bool getCyclicEngaged();
|
2019-07-25 11:27:57 +00:00
|
|
|
bool getBootInit();
|
2019-07-24 09:25:07 +00:00
|
|
|
int getRunTime();
|
|
|
|
int getGlowTime();
|
2019-07-24 20:06:47 +00:00
|
|
|
int getMaxGlowTime() const { return 8; };
|
|
|
|
int getMaxRunTime() const { return 32; };
|
2019-07-24 09:25:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CRTC_Store RTC_Store;
|
|
|
|
|
|
|
|
#endif // __BTC_RTC_STORE_H__
|