/* * 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 . * */ #ifndef __BTC_CLOCK_H__ #define __BTC_CLOCK_H__ #include "../Libraries/RTClib/RTClib.h" #include "BTCDateTime.h" #include "../cfg/BTCConfig.h" class RTC_DS3231Ex : public RTC_DS3231 { public: void writeData(uint8_t* pData, int len, int ofs=0); void readData(uint8_t* pData, int len, int ofs=0); bool resetLostPower(); }; class CClock { // allow use of ONE of the RTClib supported RTC chips // reference to the selected rtc stored here #if RTC_USE_DS3231 == 1 // RTC_DS3231& _rtc; RTC_DS3231Ex& _rtc; #elif RTC_USE_DS1307 == 1 RTC_DS1307& _rtc; #elif RTC_USE_PCF8523 == 1 RTC_PCF8523& _rtc; #else RTC_Millis& _rtc; #endif unsigned long _nextRTCfetch; BTCDateTime _currentTime; int _prevMinute; public: // constructors for ONE of the RTClib supported RTC chips #if RTC_USE_DS3231 == 1 // CClock(RTC_DS3231& rtc) : _rtc(rtc) {}; CClock(RTC_DS3231Ex& rtc) : _rtc(rtc) {}; #elif RTC_USE_DS1307 == 1 CClock(RTC_1307& rtc) : _rtc(rtc) {}; #elif RTC_USE_PCF8523 == 1 CClock(RTC_PCF8523& rtc) : _rtc(rtc) {}; #else CClock(RTC_Millis& rtc) : _rtc(rtc) {}; #endif void begin(); const BTCDateTime& update(); const BTCDateTime& get() const; void set(const DateTime& newTime); void saveData(uint8_t* pData, int len, int ofs); void readData(uint8_t* pData, int len, int ofs); bool lostPower(); void resetLostPower(); }; class CRTC_Store { bool _accessed[4]; // [0] - bytes 0..3, [1] byte 4, [2] byte 5, [3] byte 6 float _fuelgauge; uint8_t _demandDegC; uint8_t _demandPump; bool _CyclicEngaged; bool _bit6; void _ReadAndUnpackByte4(); void _PackAndSaveByte4(); void _ReadAndUnpackByte5(); void _PackAndSaveByte5(); public: CRTC_Store(); void begin(); void setFuelGauge(float val); void setDesiredTemp(uint8_t val); void setDesiredPump(uint8_t val); void setCyclicEngaged(bool _CyclicEngaged); float getFuelGauge(); uint8_t getDesiredTemp(); uint8_t getDesiredPump(); bool getCyclicEngaged(); }; extern CClock Clock; extern CRTC_Store RTC_Store; #endif // __BTC_TIMERS_H__