/* *************************************************************************** ** Program : OTGW-firmware.h ** Version : v0.7.3 ** ** Copyright (c) 2021 Robert van den Breemen ** ** TERMS OF USE: MIT License. See bottom of file. *************************************************************************** */ #include // https://github.com/ropg/ezTime #include // https://github.com/jandrassy/TelnetStream/commit/1294a9ee5cc9b1f7e51005091e351d60c8cddecf #include // https://arduinojson.org/ #include "Wire.h" #include "Debug.h" #include "safeTimers.h" #include "networkStuff.h" #include "OTGW-Core.h" // Core code for this firmware #include "OTGW-upgrade.h" // Schelte Bron's upgrade PIC code //Defaults and macro definitions #define _HOSTNAME "OTGW" #define SETTINGS_FILE "/settings.ini" #define CMSG_SIZE 512 #define JSON_BUFF_MAX 1024 #define CSTR(x) x.c_str() #define CBOOLEAN(x) (x?"True":"False") #define CONOFF(x) (x?"On":"Off") #define CBINARY(x) (x?"1":"0") #define EVALBOOLEAN(x) (stricmp(x,"true")==0||stricmp(x,"on")==0||stricmp(x,"1")==0) //Global variables WiFiClient wifiClient; bool Verbose = false; char cMsg[CMSG_SIZE]; char fChar[10]; String lastReset = ""; uint64_t upTimeSeconds = 0; uint32_t rebootCount = 0; Timezone myTZ; const char *weekDayName[] { "Unknown", "Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Unknown" }; const char *flashMode[] { "QIO", "QOUT", "DIO", "DOUT", "Unknown" }; //Information on OTGW String sPICfwversion = ""; //All things that are settings String settingHostname = _HOSTNAME; //MQTT settings bool settingMQTTenable = true; bool settingMQTTsecure = false; String settingMQTTbroker= "192.168.88.254"; int16_t settingMQTTbrokerPort = 1883; String settingMQTTuser = ""; String settingMQTTpasswd = ""; String settingMQTTtopTopic = "OTGW"; String settingTimezone = "NL"; //Default // That's all folks... /*************************************************************************** * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to permit * persons to whom the Software is furnished to do so, subject to the * following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * **************************************************************************** */