diff --git a/BrewPiLess/Actuator.cpp b/BrewPiLess/Actuator.cpp index 376f3e724..37b36392e 100644 --- a/BrewPiLess/Actuator.cpp +++ b/BrewPiLess/Actuator.cpp @@ -110,6 +110,9 @@ + + + diff --git a/BrewPiLess/Actuator.h b/BrewPiLess/Actuator.h index 03a13d9b6..2ca47a8c6 100644 --- a/BrewPiLess/Actuator.h +++ b/BrewPiLess/Actuator.h @@ -157,6 +157,9 @@ class ValueActuator ACTUATOR_BASE_CLASS_DECL + + + diff --git a/BrewPiLess/ActuatorArduinoPin.cpp b/BrewPiLess/ActuatorArduinoPin.cpp index ece98b3c3..a03bd728a 100644 --- a/BrewPiLess/ActuatorArduinoPin.cpp +++ b/BrewPiLess/ActuatorArduinoPin.cpp @@ -92,6 +92,9 @@ + + + diff --git a/BrewPiLess/ActuatorArduinoPin.h b/BrewPiLess/ActuatorArduinoPin.h index e20d751a7..ea41b094c 100644 --- a/BrewPiLess/ActuatorArduinoPin.h +++ b/BrewPiLess/ActuatorArduinoPin.h @@ -142,6 +142,9 @@ class DigitalPinActuator ACTUATOR_BASE_CLASS_DECL + + + diff --git a/BrewPiLess/ActuatorAutoOff.h b/BrewPiLess/ActuatorAutoOff.h index d8c0f19e9..b69390f03 100644 --- a/BrewPiLess/ActuatorAutoOff.h +++ b/BrewPiLess/ActuatorAutoOff.h @@ -144,6 +144,9 @@ class AutoOffActuator : public Actuator { + + + diff --git a/BrewPiLess/ArduinoEepromAccess.h b/BrewPiLess/ArduinoEepromAccess.h index 6471f9637..7ab9efc86 100644 --- a/BrewPiLess/ArduinoEepromAccess.h +++ b/BrewPiLess/ArduinoEepromAccess.h @@ -138,6 +138,9 @@ class ArduinoEepromAccess + + + diff --git a/BrewPiLess/ArduinoFunctions.cpp b/BrewPiLess/ArduinoFunctions.cpp index d1596d338..a58f6db44 100644 --- a/BrewPiLess/ArduinoFunctions.cpp +++ b/BrewPiLess/ArduinoFunctions.cpp @@ -162,6 +162,9 @@ extern "C"{ + + + diff --git a/BrewPiLess/AsyncServerSideEvent.cpp b/BrewPiLess/AsyncServerSideEvent.cpp index 57d3498df..359685874 100644 --- a/BrewPiLess/AsyncServerSideEvent.cpp +++ b/BrewPiLess/AsyncServerSideEvent.cpp @@ -364,6 +364,9 @@ size_t AsyncServerSideEventResponse::_ack(AsyncWebServerRequest *request, size_t + + + diff --git a/BrewPiLess/AsyncServerSideEvent.h b/BrewPiLess/AsyncServerSideEvent.h index 2f1c992b6..742623e9d 100644 --- a/BrewPiLess/AsyncServerSideEvent.h +++ b/BrewPiLess/AsyncServerSideEvent.h @@ -201,6 +201,9 @@ class AsyncServerSideEventResponse: public AsyncWebServerResponse { + + + diff --git a/BrewPiLess/BrewKeeper.cpp b/BrewPiLess/BrewKeeper.cpp index 9fece5e4f..3c82e9b2f 100644 --- a/BrewPiLess/BrewKeeper.cpp +++ b/BrewPiLess/BrewKeeper.cpp @@ -361,6 +361,9 @@ void makeTime(time_t timeInput, struct tm &tm){ + + + diff --git a/BrewPiLess/BrewKeeper.h b/BrewPiLess/BrewKeeper.h index 4bff846e0..4be9da75b 100644 --- a/BrewPiLess/BrewKeeper.h +++ b/BrewPiLess/BrewKeeper.h @@ -133,6 +133,9 @@ class BrewKeeper + + + diff --git a/BrewPiLess/BrewLogger.h b/BrewPiLess/BrewLogger.h index 0925eb74a..b34c55d2a 100644 --- a/BrewPiLess/BrewLogger.h +++ b/BrewPiLess/BrewLogger.h @@ -798,6 +798,9 @@ extern BrewLogger brewLogger; + + + diff --git a/BrewPiLess/BrewPiLess.ino b/BrewPiLess/BrewPiLess.ino index ef502bf6a..c756c90f1 100644 --- a/BrewPiLess/BrewPiLess.ino +++ b/BrewPiLess/BrewPiLess.ino @@ -116,7 +116,8 @@ R"END( #define DEFAULT_INDEX_FILE "index.htm" const char *public_list[]={ -"/bwf.js" +"/bwf.js", +"/brewing.json" }; const char *nocache_list[]={ @@ -300,6 +301,9 @@ public: String data=request->getParam("data", true, false)->value(); //DBG_PRINTF("putline:%s\n",data.c_str()); + if(data.startsWith("j") && !request->authenticate(username, password)) + return request->requestAuthentication(); + brewPi.putLine(data.c_str()); request->send(200); }else if(request->method() == HTTP_GET && request->url() == CONTROL_CC_PATH){ @@ -1128,6 +1132,9 @@ void loop(void){ + + + diff --git a/BrewPiLess/BrewPiProxy.cpp b/BrewPiLess/BrewPiProxy.cpp index b7bbceecc..5cc2dcaa8 100644 --- a/BrewPiLess/BrewPiProxy.cpp +++ b/BrewPiLess/BrewPiProxy.cpp @@ -194,6 +194,9 @@ void BrewPiProxy::getAllStatus(uint8_t *pState,uint8_t *pMode,float *pBeerTemp,f + + + diff --git a/BrewPiLess/BrewPiProxy.h b/BrewPiLess/BrewPiProxy.h index bc8362ea1..0f25c9ecf 100644 --- a/BrewPiLess/BrewPiProxy.h +++ b/BrewPiLess/BrewPiProxy.h @@ -130,6 +130,9 @@ class BrewPiProxy{ + + + diff --git a/BrewPiLess/Brewpi.cpp b/BrewPiLess/Brewpi.cpp index 2a809689d..d404c0c57 100644 --- a/BrewPiLess/Brewpi.cpp +++ b/BrewPiLess/Brewpi.cpp @@ -240,6 +240,9 @@ void loop() { + + + diff --git a/BrewPiLess/Brewpi.h b/BrewPiLess/Brewpi.h index fc2d4b79b..5ffccadad 100644 --- a/BrewPiLess/Brewpi.h +++ b/BrewPiLess/Brewpi.h @@ -154,6 +154,9 @@ extern ValueActuator alarm; + + + diff --git a/BrewPiLess/BrewpiStrings.cpp b/BrewPiLess/BrewpiStrings.cpp index 35cef8a9a..4516e0898 100644 --- a/BrewPiLess/BrewpiStrings.cpp +++ b/BrewPiLess/BrewpiStrings.cpp @@ -135,6 +135,9 @@ int8_t indexOf(const char* s, char c) + + + diff --git a/BrewPiLess/BrewpiStrings.h b/BrewPiLess/BrewpiStrings.h index e2d23c80b..7b18c8c6c 100644 --- a/BrewPiLess/BrewpiStrings.h +++ b/BrewPiLess/BrewpiStrings.h @@ -133,6 +133,9 @@ int8_t indexOf(const char* s, char c); + + + diff --git a/BrewPiLess/Buzzer.cpp b/BrewPiLess/Buzzer.cpp index 50ff1baf1..f4a8c0105 100644 --- a/BrewPiLess/Buzzer.cpp +++ b/BrewPiLess/Buzzer.cpp @@ -201,6 +201,9 @@ Buzzer buzzer; + + + diff --git a/BrewPiLess/Buzzer.h b/BrewPiLess/Buzzer.h index 036292817..34038c42f 100644 --- a/BrewPiLess/Buzzer.h +++ b/BrewPiLess/Buzzer.h @@ -134,6 +134,9 @@ extern Buzzer buzzer; + + + diff --git a/BrewPiLess/Config.h b/BrewPiLess/Config.h index 908ab5890..aaac7386c 100644 --- a/BrewPiLess/Config.h +++ b/BrewPiLess/Config.h @@ -384,6 +384,9 @@ + + + diff --git a/BrewPiLess/ConfigDefault.h b/BrewPiLess/ConfigDefault.h index 35b850001..cb220f5d7 100644 --- a/BrewPiLess/ConfigDefault.h +++ b/BrewPiLess/ConfigDefault.h @@ -291,6 +291,9 @@ + + + diff --git a/BrewPiLess/DS2413.cpp b/BrewPiLess/DS2413.cpp index c2e66c7f5..c13127e92 100644 --- a/BrewPiLess/DS2413.cpp +++ b/BrewPiLess/DS2413.cpp @@ -182,6 +182,9 @@ bool DS2413::accessWrite(uint8_t b, uint8_t maxTries) + + + diff --git a/BrewPiLess/DS2413.h b/BrewPiLess/DS2413.h index e97996f68..5b6024667 100644 --- a/BrewPiLess/DS2413.h +++ b/BrewPiLess/DS2413.h @@ -305,6 +305,9 @@ class DS2413 + + + diff --git a/BrewPiLess/DallasTemperature.cpp b/BrewPiLess/DallasTemperature.cpp index 4603b16a3..346217925 100644 --- a/BrewPiLess/DallasTemperature.cpp +++ b/BrewPiLess/DallasTemperature.cpp @@ -972,6 +972,9 @@ void DallasTemperature::operator delete(void* p) + + + diff --git a/BrewPiLess/DallasTemperature.h b/BrewPiLess/DallasTemperature.h index d43524298..8afe51cb9 100644 --- a/BrewPiLess/DallasTemperature.h +++ b/BrewPiLess/DallasTemperature.h @@ -474,6 +474,9 @@ class DallasTemperature + + + diff --git a/BrewPiLess/DataLogger.cpp b/BrewPiLess/DataLogger.cpp index 37a25fed6..213455ae0 100644 --- a/BrewPiLess/DataLogger.cpp +++ b/BrewPiLess/DataLogger.cpp @@ -444,6 +444,9 @@ void DataLogger::getSettings(AsyncWebServerRequest *request) + + + diff --git a/BrewPiLess/DataLogger.h b/BrewPiLess/DataLogger.h index af5d98996..59311aaad 100644 --- a/BrewPiLess/DataLogger.h +++ b/BrewPiLess/DataLogger.h @@ -132,6 +132,9 @@ class DataLogger + + + diff --git a/BrewPiLess/DeviceManager.cpp b/BrewPiLess/DeviceManager.cpp index 129337939..86ec37e18 100644 --- a/BrewPiLess/DeviceManager.cpp +++ b/BrewPiLess/DeviceManager.cpp @@ -1056,6 +1056,9 @@ DeviceManager deviceManager; + + + diff --git a/BrewPiLess/DeviceManager.h b/BrewPiLess/DeviceManager.h index e76e69733..a8da96573 100644 --- a/BrewPiLess/DeviceManager.h +++ b/BrewPiLess/DeviceManager.h @@ -373,6 +373,9 @@ extern DeviceManager deviceManager; + + + diff --git a/BrewPiLess/Display.cpp b/BrewPiLess/Display.cpp index 6656df349..2619d40ed 100644 --- a/BrewPiLess/Display.cpp +++ b/BrewPiLess/Display.cpp @@ -117,6 +117,9 @@ Display::~Display() { } + + + diff --git a/BrewPiLess/Display.h b/BrewPiLess/Display.h index 5c00854b4..0f80cdadd 100644 --- a/BrewPiLess/Display.h +++ b/BrewPiLess/Display.h @@ -123,6 +123,9 @@ extern DisplayType DISPLAY_REF display; + + + diff --git a/BrewPiLess/DisplayBase.h b/BrewPiLess/DisplayBase.h index 7b22f7144..fdb66c87a 100644 --- a/BrewPiLess/DisplayBase.h +++ b/BrewPiLess/DisplayBase.h @@ -250,6 +250,9 @@ static const uint8_t LCD_FLAG_ALTERNATE_ROOM = 0x02; + + + diff --git a/BrewPiLess/DisplayLcd.cpp b/BrewPiLess/DisplayLcd.cpp index 4eb3b24db..b7eee250b 100644 --- a/BrewPiLess/DisplayLcd.cpp +++ b/BrewPiLess/DisplayLcd.cpp @@ -373,6 +373,9 @@ void LcdDisplay::printState(void){ + + + diff --git a/BrewPiLess/DisplayLcd.h b/BrewPiLess/DisplayLcd.h index 25cd1994b..40105af2c 100644 --- a/BrewPiLess/DisplayLcd.h +++ b/BrewPiLess/DisplayLcd.h @@ -210,6 +210,9 @@ class LcdDisplay DISPLAY_SUPERCLASS + + + diff --git a/BrewPiLess/ESP8266mDNS.cpp b/BrewPiLess/ESP8266mDNS.cpp index 5872e4efc..472d15a4a 100644 --- a/BrewPiLess/ESP8266mDNS.cpp +++ b/BrewPiLess/ESP8266mDNS.cpp @@ -1148,6 +1148,9 @@ MDNSResponder MDNS = MDNSResponder(); + + + diff --git a/BrewPiLess/ESP8266mDNS.h b/BrewPiLess/ESP8266mDNS.h index 539c7b852..c093f6a8e 100644 --- a/BrewPiLess/ESP8266mDNS.h +++ b/BrewPiLess/ESP8266mDNS.h @@ -224,6 +224,9 @@ extern MDNSResponder MDNS; + + + diff --git a/BrewPiLess/ESPEepromAccess.h b/BrewPiLess/ESPEepromAccess.h index c4755b0e1..d12f9ab54 100644 --- a/BrewPiLess/ESPEepromAccess.h +++ b/BrewPiLess/ESPEepromAccess.h @@ -173,6 +173,9 @@ class ESPEepromAccess + + + diff --git a/BrewPiLess/ESPUpdateServer.cpp b/BrewPiLess/ESPUpdateServer.cpp index 93cd6e320..1520705bf 100644 --- a/BrewPiLess/ESPUpdateServer.cpp +++ b/BrewPiLess/ESPUpdateServer.cpp @@ -291,6 +291,9 @@ void ESPUpdateServer_loop(void){ + + + diff --git a/BrewPiLess/ESPUpdateServer.h b/BrewPiLess/ESPUpdateServer.h index bbbadf541..cd27c09cd 100644 --- a/BrewPiLess/ESPUpdateServer.h +++ b/BrewPiLess/ESPUpdateServer.h @@ -98,6 +98,9 @@ void ESPUpdateServer_loop(void); + + + diff --git a/BrewPiLess/EepromAccess.h b/BrewPiLess/EepromAccess.h index e2f7d449f..f55a6984b 100644 --- a/BrewPiLess/EepromAccess.h +++ b/BrewPiLess/EepromAccess.h @@ -133,6 +133,9 @@ extern EepromAccess eepromAccess; + + + diff --git a/BrewPiLess/EepromFormat.h b/BrewPiLess/EepromFormat.h index 38c286077..337f9466d 100644 --- a/BrewPiLess/EepromFormat.h +++ b/BrewPiLess/EepromFormat.h @@ -182,6 +182,9 @@ void eepromSizeCheck() { + + + diff --git a/BrewPiLess/EepromManager.cpp b/BrewPiLess/EepromManager.cpp index 4c7f7002c..3e36150c6 100644 --- a/BrewPiLess/EepromManager.cpp +++ b/BrewPiLess/EepromManager.cpp @@ -266,6 +266,9 @@ void clear(uint8_t* p, uint8_t size) { + + + diff --git a/BrewPiLess/EepromManager.h b/BrewPiLess/EepromManager.h index 19d6e434a..de51404c6 100644 --- a/BrewPiLess/EepromManager.h +++ b/BrewPiLess/EepromManager.h @@ -195,6 +195,9 @@ extern EepromManager eepromManager; + + + diff --git a/BrewPiLess/EepromStructs.h b/BrewPiLess/EepromStructs.h index bfda20560..8a3e8d665 100644 --- a/BrewPiLess/EepromStructs.h +++ b/BrewPiLess/EepromStructs.h @@ -205,6 +205,9 @@ struct DeviceConfig { + + + diff --git a/BrewPiLess/EepromTypes.h b/BrewPiLess/EepromTypes.h index 07ce62dfa..5dedf1693 100644 --- a/BrewPiLess/EepromTypes.h +++ b/BrewPiLess/EepromTypes.h @@ -113,6 +113,9 @@ typedef uint16_t eptr_t; + + + diff --git a/BrewPiLess/EmbeddedFiles.cpp b/BrewPiLess/EmbeddedFiles.cpp index 2d4556f86..247b3009d 100644 --- a/BrewPiLess/EmbeddedFiles.cpp +++ b/BrewPiLess/EmbeddedFiles.cpp @@ -136,6 +136,9 @@ const char* getEmbeddedFile(const char* filename) + + + diff --git a/BrewPiLess/FastDigitalPin.h b/BrewPiLess/FastDigitalPin.h index 104594aae..b2afecdeb 100644 --- a/BrewPiLess/FastDigitalPin.h +++ b/BrewPiLess/FastDigitalPin.h @@ -125,6 +125,9 @@ + + + diff --git a/BrewPiLess/FilterCascaded.cpp b/BrewPiLess/FilterCascaded.cpp index 1c3a9bf40..57cc107f3 100644 --- a/BrewPiLess/FilterCascaded.cpp +++ b/BrewPiLess/FilterCascaded.cpp @@ -162,6 +162,9 @@ void CascadedFilter::init(temperature val){ + + + diff --git a/BrewPiLess/FilterCascaded.h b/BrewPiLess/FilterCascaded.h index b29051af1..f242f4c8e 100644 --- a/BrewPiLess/FilterCascaded.h +++ b/BrewPiLess/FilterCascaded.h @@ -148,6 +148,9 @@ class CascadedFilter{ + + + diff --git a/BrewPiLess/FilterFixed.cpp b/BrewPiLess/FilterFixed.cpp index baf0f1aab..a6bca5518 100644 --- a/BrewPiLess/FilterFixed.cpp +++ b/BrewPiLess/FilterFixed.cpp @@ -161,6 +161,9 @@ temperature FixedFilter::detectNegPeak(void){ + + + diff --git a/BrewPiLess/FilterFixed.h b/BrewPiLess/FilterFixed.h index 5edc32970..2f35dd869 100644 --- a/BrewPiLess/FilterFixed.h +++ b/BrewPiLess/FilterFixed.h @@ -200,6 +200,9 @@ class FixedFilter{ + + + diff --git a/BrewPiLess/IicLcd.cpp b/BrewPiLess/IicLcd.cpp index ac18e8e78..8ff269519 100644 --- a/BrewPiLess/IicLcd.cpp +++ b/BrewPiLess/IicLcd.cpp @@ -466,6 +466,9 @@ void IIClcd::print_P(const char * str){ // print a string stored in PROGMEM + + + diff --git a/BrewPiLess/IicLcd.h b/BrewPiLess/IicLcd.h index a83c5e942..4809f8262 100644 --- a/BrewPiLess/IicLcd.h +++ b/BrewPiLess/IicLcd.h @@ -244,6 +244,9 @@ class IIClcd : public Print { + + + diff --git a/BrewPiLess/IicOledLcd.cpp b/BrewPiLess/IicOledLcd.cpp index 8309aa4aa..f285b49b5 100644 --- a/BrewPiLess/IicOledLcd.cpp +++ b/BrewPiLess/IicOledLcd.cpp @@ -306,6 +306,9 @@ void IICOledLcd::printStatus(char* str) + + + diff --git a/BrewPiLess/IicOledLcd.h b/BrewPiLess/IicOledLcd.h index 3b29ae93d..632808b38 100644 --- a/BrewPiLess/IicOledLcd.h +++ b/BrewPiLess/IicOledLcd.h @@ -201,6 +201,9 @@ class IICOledLcd : public Print { + + + diff --git a/BrewPiLess/JsonKeys.h b/BrewPiLess/JsonKeys.h index 2b3669846..6c3a02d05 100644 --- a/BrewPiLess/JsonKeys.h +++ b/BrewPiLess/JsonKeys.h @@ -167,6 +167,9 @@ static const char JSONKEY_logID[] PROGMEM = "logID"; + + + diff --git a/BrewPiLess/LogMessages.h b/BrewPiLess/LogMessages.h index feef82c59..f05dfc0ff 100644 --- a/BrewPiLess/LogMessages.h +++ b/BrewPiLess/LogMessages.h @@ -187,6 +187,9 @@ enum infoMessages{ + + + diff --git a/BrewPiLess/Logger.cpp b/BrewPiLess/Logger.cpp index c3411c76b..e82f386ad 100644 --- a/BrewPiLess/Logger.cpp +++ b/BrewPiLess/Logger.cpp @@ -150,6 +150,9 @@ Logger logger; + + + diff --git a/BrewPiLess/Logger.h b/BrewPiLess/Logger.h index 3e95011a2..f7991be3b 100644 --- a/BrewPiLess/Logger.h +++ b/BrewPiLess/Logger.h @@ -221,6 +221,9 @@ extern Logger logger; + + + diff --git a/BrewPiLess/Menu.cpp b/BrewPiLess/Menu.cpp index fb4b0ff96..7bf3302ec 100644 --- a/BrewPiLess/Menu.cpp +++ b/BrewPiLess/Menu.cpp @@ -320,6 +320,9 @@ void Menu::pickBeerSetting(void){ + + + diff --git a/BrewPiLess/Menu.h b/BrewPiLess/Menu.h index 30e2da76c..1bd9bf59f 100644 --- a/BrewPiLess/Menu.h +++ b/BrewPiLess/Menu.h @@ -146,6 +146,9 @@ extern Menu menu; + + + diff --git a/BrewPiLess/NullLcdDriver.cpp b/BrewPiLess/NullLcdDriver.cpp index 42d131fe6..76ccb35ed 100644 --- a/BrewPiLess/NullLcdDriver.cpp +++ b/BrewPiLess/NullLcdDriver.cpp @@ -237,6 +237,9 @@ void NullLcdDriver::printSpacesToRestOfLine(void){ + + + diff --git a/BrewPiLess/NullLcdDriver.h b/BrewPiLess/NullLcdDriver.h index 6abf5a701..cfd193b69 100644 --- a/BrewPiLess/NullLcdDriver.h +++ b/BrewPiLess/NullLcdDriver.h @@ -191,6 +191,9 @@ class NullLcdDriver : public Print { + + + diff --git a/BrewPiLess/OLEDFourBit.cpp b/BrewPiLess/OLEDFourBit.cpp index 52a214a94..30d9bebcf 100644 --- a/BrewPiLess/OLEDFourBit.cpp +++ b/BrewPiLess/OLEDFourBit.cpp @@ -415,6 +415,9 @@ void OLEDFourBit::printSpacesToRestOfLine(void){ + + + diff --git a/BrewPiLess/OLEDFourBit.h b/BrewPiLess/OLEDFourBit.h index 4d2a9fe86..e38b984b5 100644 --- a/BrewPiLess/OLEDFourBit.h +++ b/BrewPiLess/OLEDFourBit.h @@ -248,6 +248,9 @@ class OLEDFourBit : public Print { + + + diff --git a/BrewPiLess/OneWireActuator.h b/BrewPiLess/OneWireActuator.h index 33c44c53a..8a0fbe499 100644 --- a/BrewPiLess/OneWireActuator.h +++ b/BrewPiLess/OneWireActuator.h @@ -160,6 +160,9 @@ class OneWireActuator : public Actuator + + + diff --git a/BrewPiLess/OneWireDevices.h b/BrewPiLess/OneWireDevices.h index 02556d44a..bc35e4595 100644 --- a/BrewPiLess/OneWireDevices.h +++ b/BrewPiLess/OneWireDevices.h @@ -112,6 +112,9 @@ void printBytes(uint8_t* data, uint8_t len, char* buf); + + + diff --git a/BrewPiLess/OneWireTempSensor.cpp b/BrewPiLess/OneWireTempSensor.cpp index 4631f0e3d..4a6028e9d 100644 --- a/BrewPiLess/OneWireTempSensor.cpp +++ b/BrewPiLess/OneWireTempSensor.cpp @@ -208,6 +208,9 @@ temperature OneWireTempSensor::readAndConstrainTemp() + + + diff --git a/BrewPiLess/OneWireTempSensor.h b/BrewPiLess/OneWireTempSensor.h index 1f274407f..0f9384eb7 100644 --- a/BrewPiLess/OneWireTempSensor.h +++ b/BrewPiLess/OneWireTempSensor.h @@ -170,6 +170,9 @@ class OneWireTempSensor : public BasicTempSensor { + + + diff --git a/BrewPiLess/PiLink.cpp b/BrewPiLess/PiLink.cpp index 34b96e68b..7400bb6f7 100644 --- a/BrewPiLess/PiLink.cpp +++ b/BrewPiLess/PiLink.cpp @@ -1144,6 +1144,9 @@ void PiLink::soundAlarm(bool active) + + + diff --git a/BrewPiLess/PiLink.h b/BrewPiLess/PiLink.h index c0bea51af..d59ba4417 100644 --- a/BrewPiLess/PiLink.h +++ b/BrewPiLess/PiLink.h @@ -251,6 +251,9 @@ extern PiLink piLink; + + + diff --git a/BrewPiLess/Pins.h b/BrewPiLess/Pins.h index ec640824f..652655fdd 100644 --- a/BrewPiLess/Pins.h +++ b/BrewPiLess/Pins.h @@ -234,6 +234,9 @@ + + + diff --git a/BrewPiLess/Random.cpp b/BrewPiLess/Random.cpp index c06b9ac10..74e46cf5d 100644 --- a/BrewPiLess/Random.cpp +++ b/BrewPiLess/Random.cpp @@ -116,6 +116,9 @@ + + + diff --git a/BrewPiLess/RotaryEncoder.cpp b/BrewPiLess/RotaryEncoder.cpp index 8cee95ac0..e2a7c94cd 100644 --- a/BrewPiLess/RotaryEncoder.cpp +++ b/BrewPiLess/RotaryEncoder.cpp @@ -506,6 +506,9 @@ int16_t RotaryEncoder::read(void){ + + + diff --git a/BrewPiLess/RotaryEncoder.h b/BrewPiLess/RotaryEncoder.h index 839760f76..696b20c74 100644 --- a/BrewPiLess/RotaryEncoder.h +++ b/BrewPiLess/RotaryEncoder.h @@ -155,6 +155,9 @@ extern RotaryEncoder rotaryEncoder; + + + diff --git a/BrewPiLess/Sensor.cpp b/BrewPiLess/Sensor.cpp index 3cb0107c1..0bfd0d240 100644 --- a/BrewPiLess/Sensor.cpp +++ b/BrewPiLess/Sensor.cpp @@ -110,6 +110,9 @@ + + + diff --git a/BrewPiLess/Sensor.h b/BrewPiLess/Sensor.h index 8728860e2..127dd51e8 100644 --- a/BrewPiLess/Sensor.h +++ b/BrewPiLess/Sensor.h @@ -141,6 +141,9 @@ typedef Sensor SwitchSensor; + + + diff --git a/BrewPiLess/SensorArduinoPin.h b/BrewPiLess/SensorArduinoPin.h index ed5e9efe3..9d6554a4a 100644 --- a/BrewPiLess/SensorArduinoPin.h +++ b/BrewPiLess/SensorArduinoPin.h @@ -143,6 +143,9 @@ class DigitalPinSensor : public SwitchSensor + + + diff --git a/BrewPiLess/SettingsManager.cpp b/BrewPiLess/SettingsManager.cpp index f47ee1c42..59c98d4b1 100644 --- a/BrewPiLess/SettingsManager.cpp +++ b/BrewPiLess/SettingsManager.cpp @@ -158,6 +158,9 @@ SettingsManager settingsManager; + + + diff --git a/BrewPiLess/SettingsManager.h b/BrewPiLess/SettingsManager.h index 6cdeeb49f..986afa0d6 100644 --- a/BrewPiLess/SettingsManager.h +++ b/BrewPiLess/SettingsManager.h @@ -134,6 +134,9 @@ extern SettingsManager settingsManager; + + + diff --git a/BrewPiLess/Simulator.cpp b/BrewPiLess/Simulator.cpp index 5eb3a8506..aca2e5a2b 100644 --- a/BrewPiLess/Simulator.cpp +++ b/BrewPiLess/Simulator.cpp @@ -350,6 +350,9 @@ void PiLink::printSimulatorSettings() + + + diff --git a/BrewPiLess/Simulator.h b/BrewPiLess/Simulator.h index 01a526e26..1e49c7e26 100644 --- a/BrewPiLess/Simulator.h +++ b/BrewPiLess/Simulator.h @@ -515,6 +515,9 @@ void simulateLoop(); + + + diff --git a/BrewPiLess/SpiLcd.cpp b/BrewPiLess/SpiLcd.cpp index e42ecd68e..301997d88 100644 --- a/BrewPiLess/SpiLcd.cpp +++ b/BrewPiLess/SpiLcd.cpp @@ -402,6 +402,9 @@ void SpiLcd::print_P(const char * str){ // print a string stored in PROGMEM + + + diff --git a/BrewPiLess/SpiLcd.h b/BrewPiLess/SpiLcd.h index e03202522..5bf94b42e 100644 --- a/BrewPiLess/SpiLcd.h +++ b/BrewPiLess/SpiLcd.h @@ -260,6 +260,9 @@ class SpiLcd : public Print { + + + diff --git a/BrewPiLess/TempControl.cpp b/BrewPiLess/TempControl.cpp index 6248f53c2..0cdb95188 100644 --- a/BrewPiLess/TempControl.cpp +++ b/BrewPiLess/TempControl.cpp @@ -759,6 +759,9 @@ const ControlConstants TempControl::ccDefaults PROGMEM = + + + diff --git a/BrewPiLess/TempControl.h b/BrewPiLess/TempControl.h index d361a9c0d..caf7cce0e 100644 --- a/BrewPiLess/TempControl.h +++ b/BrewPiLess/TempControl.h @@ -326,6 +326,9 @@ extern TempControl tempControl; + + + diff --git a/BrewPiLess/TempSensor.cpp b/BrewPiLess/TempSensor.cpp index 1e1c4821a..da69f1bb3 100644 --- a/BrewPiLess/TempSensor.cpp +++ b/BrewPiLess/TempSensor.cpp @@ -197,6 +197,9 @@ BasicTempSensor& TempSensor::sensor() { + + + diff --git a/BrewPiLess/TempSensor.h b/BrewPiLess/TempSensor.h index b46aadfe1..eaefbf1dc 100644 --- a/BrewPiLess/TempSensor.h +++ b/BrewPiLess/TempSensor.h @@ -193,6 +193,9 @@ class TempSensor { + + + diff --git a/BrewPiLess/TempSensorBasic.h b/BrewPiLess/TempSensorBasic.h index fc2356fe6..69036ac72 100644 --- a/BrewPiLess/TempSensorBasic.h +++ b/BrewPiLess/TempSensorBasic.h @@ -134,6 +134,9 @@ class BasicTempSensor + + + diff --git a/BrewPiLess/TempSensorDisconnected.h b/BrewPiLess/TempSensorDisconnected.h index 8ea9f0025..5ef20a7eb 100644 --- a/BrewPiLess/TempSensorDisconnected.h +++ b/BrewPiLess/TempSensorDisconnected.h @@ -126,6 +126,9 @@ class DisconnectedTempSensor : public BasicTempSensor { + + + diff --git a/BrewPiLess/TempSensorExternal.h b/BrewPiLess/TempSensorExternal.h index f0989abdc..1864661bf 100644 --- a/BrewPiLess/TempSensorExternal.h +++ b/BrewPiLess/TempSensorExternal.h @@ -150,6 +150,9 @@ class ExternalTempSensor : public BasicTempSensor + + + diff --git a/BrewPiLess/TempSensorMock.h b/BrewPiLess/TempSensorMock.h index 693fefd1b..399945aa6 100644 --- a/BrewPiLess/TempSensorMock.h +++ b/BrewPiLess/TempSensorMock.h @@ -152,6 +152,9 @@ class MockTempSensor : public BasicTempSensor + + + diff --git a/BrewPiLess/TemperatureFormats.cpp b/BrewPiLess/TemperatureFormats.cpp index 8104db614..7bddb27ce 100644 --- a/BrewPiLess/TemperatureFormats.cpp +++ b/BrewPiLess/TemperatureFormats.cpp @@ -344,6 +344,9 @@ temperature multiplyFactorTemperatureDiff(temperature factor, temperature b) + + + diff --git a/BrewPiLess/TemperatureFormats.h b/BrewPiLess/TemperatureFormats.h index 5dd6228ed..fc1237b7f 100644 --- a/BrewPiLess/TemperatureFormats.h +++ b/BrewPiLess/TemperatureFormats.h @@ -258,6 +258,9 @@ float temperatureFloatValue(temperature t); + + + diff --git a/BrewPiLess/Ticks.cpp b/BrewPiLess/Ticks.cpp index be63ca3f2..2aaffeb48 100644 --- a/BrewPiLess/Ticks.cpp +++ b/BrewPiLess/Ticks.cpp @@ -145,6 +145,9 @@ void HardwareDelay::seconds(uint16_t seconds) { millis(seconds<<10); } + + + diff --git a/BrewPiLess/Ticks.h b/BrewPiLess/Ticks.h index d5931320b..d00bf6a53 100644 --- a/BrewPiLess/Ticks.h +++ b/BrewPiLess/Ticks.h @@ -211,6 +211,9 @@ extern DelayImpl wait; + + + diff --git a/BrewPiLess/TicksArduino.h b/BrewPiLess/TicksArduino.h index b3420560a..eb90df275 100644 --- a/BrewPiLess/TicksArduino.h +++ b/BrewPiLess/TicksArduino.h @@ -136,6 +136,9 @@ class HardwareDelay { + + + diff --git a/BrewPiLess/TimeKeeper.cpp b/BrewPiLess/TimeKeeper.cpp index 883c1e17d..fc4abe719 100644 --- a/BrewPiLess/TimeKeeper.cpp +++ b/BrewPiLess/TimeKeeper.cpp @@ -213,6 +213,9 @@ time_t TimeKeeperClass::loadTime(void) + + + diff --git a/BrewPiLess/TimeKeeper.h b/BrewPiLess/TimeKeeper.h index daf7118c0..653a50faf 100644 --- a/BrewPiLess/TimeKeeper.h +++ b/BrewPiLess/TimeKeeper.h @@ -115,6 +115,9 @@ extern TimeKeeperClass TimeKeeper; + + + diff --git a/BrewPiLess/Version.h b/BrewPiLess/Version.h index 7672f9eb1..6f1abc260 100644 --- a/BrewPiLess/Version.h +++ b/BrewPiLess/Version.h @@ -114,6 +114,9 @@ + + + diff --git a/BrewPiLess/VirtualSerial.cpp b/BrewPiLess/VirtualSerial.cpp index d52029990..5d4507348 100644 --- a/BrewPiLess/VirtualSerial.cpp +++ b/BrewPiLess/VirtualSerial.cpp @@ -121,6 +121,9 @@ void QueueBuffer::print(const char* c) + + + diff --git a/BrewPiLess/VirtualSerial.h b/BrewPiLess/VirtualSerial.h index bf531dc94..33f0a1212 100644 --- a/BrewPiLess/VirtualSerial.h +++ b/BrewPiLess/VirtualSerial.h @@ -112,6 +112,9 @@ class QueueBuffer + + + diff --git a/BrewPiLess/WiFiSetup.cpp b/BrewPiLess/WiFiSetup.cpp index 0111a0739..10bee7dac 100644 --- a/BrewPiLess/WiFiSetup.cpp +++ b/BrewPiLess/WiFiSetup.cpp @@ -211,6 +211,9 @@ void WiFiSetupClass::stayConnected(void) + + + diff --git a/BrewPiLess/WiFiSetup.h b/BrewPiLess/WiFiSetup.h index 9b36194e4..a03d44c5f 100644 --- a/BrewPiLess/WiFiSetup.h +++ b/BrewPiLess/WiFiSetup.h @@ -140,6 +140,9 @@ extern WiFiSetupClass WiFiSetup; + + + diff --git a/BrewPiLess/data_bwf_js.h b/BrewPiLess/data_bwf_js.h index cf4be21a3..b0fab1cf6 100644 --- a/BrewPiLess/data_bwf_js.h +++ b/BrewPiLess/data_bwf_js.h @@ -89,6 +89,9 @@ function invoke(b){var c=new XMLHttpRequest();c.onreadystatechange=function(){if + + + diff --git a/BrewPiLess/data_edit_html_gz.h b/BrewPiLess/data_edit_html_gz.h index 1ca380fa1..08d508173 100644 --- a/BrewPiLess/data_edit_html_gz.h +++ b/BrewPiLess/data_edit_html_gz.h @@ -366,6 +366,9 @@ unsigned int edit_htm_gz_len = 3334; + + + diff --git a/BrewPiLess/data_index_htm.h b/BrewPiLess/data_index_htm.h index 4a24f48de..51484ad3c 100644 --- a/BrewPiLess/data_index_htm.h +++ b/BrewPiLess/data_index_htm.h @@ -115,6 +115,9 @@ R"END( + + + diff --git a/BrewPiLess/data_nindex_htm.h b/BrewPiLess/data_nindex_htm.h index 19eaa1868..971f87710 100644 --- a/BrewPiLess/data_nindex_htm.h +++ b/BrewPiLess/data_nindex_htm.h @@ -211,6 +211,9 @@ Set Fridge temp: + + + diff --git a/BrewPiLess/data_setup_htm.h b/BrewPiLess/data_setup_htm.h index 2fbb760df..6d8c525f9 100644 --- a/BrewPiLess/data_setup_htm.h +++ b/BrewPiLess/data_setup_htm.h @@ -119,6 +119,9 @@ R"END( + + + diff --git a/BrewPiLess/data_testcmd_htm.h b/BrewPiLess/data_testcmd_htm.h index 4c57acb60..a10908040 100644 --- a/BrewPiLess/data_testcmd_htm.h +++ b/BrewPiLess/data_testcmd_htm.h @@ -107,6 +107,9 @@ R"END( + + + diff --git a/BrewPiLess/data_viewlog_htm.h b/BrewPiLess/data_viewlog_htm.h index 44ba1c163..684909e70 100644 --- a/BrewPiLess/data_viewlog_htm.h +++ b/BrewPiLess/data_viewlog_htm.h @@ -125,6 +125,9 @@ R"END( + + + diff --git a/BrewPiLess/espconfig.h b/BrewPiLess/espconfig.h index 69470c0f9..b8dfd55a5 100644 --- a/BrewPiLess/espconfig.h +++ b/BrewPiLess/espconfig.h @@ -134,6 +134,9 @@ + + + diff --git a/BrewPiLess/font_cousine_10.h b/BrewPiLess/font_cousine_10.h index 3f998dc32..51f066456 100644 --- a/BrewPiLess/font_cousine_10.h +++ b/BrewPiLess/font_cousine_10.h @@ -543,6 +543,9 @@ const char Cousine_10[] PROGMEM = { + + + diff --git a/BrewPiLess/mystrlib.cpp b/BrewPiLess/mystrlib.cpp index 7083f54ef..62e5359f5 100644 --- a/BrewPiLess/mystrlib.cpp +++ b/BrewPiLess/mystrlib.cpp @@ -191,6 +191,9 @@ int sprintFloat(char *buff,float value,int precision) + + + diff --git a/BrewPiLess/mystrlib.h b/BrewPiLess/mystrlib.h index 07b671311..5e60eeb2d 100644 --- a/BrewPiLess/mystrlib.h +++ b/BrewPiLess/mystrlib.h @@ -108,6 +108,9 @@ int sprintFloat(char *buff,float value,int precision); + + + diff --git a/bins/BrewPiLess.V1.2.5.bin b/bins/BrewPiLess.V1.2.5.bin index e075a8a34..0da55cd6e 100644 Binary files a/bins/BrewPiLess.V1.2.5.bin and b/bins/BrewPiLess.V1.2.5.bin differ