OTGW-firmware/OTGW-firmware.h

127 lines
4.5 KiB
C
Raw Normal View History

2020-10-25 20:48:57 +01:00
/*
***************************************************************************
** Program : OTGW-firmware.h
** Version : v0.8.0
2020-10-25 20:48:57 +01:00
**
** Copyright (c) 2021 Robert van den Breemen
2020-10-25 20:48:57 +01:00
**
** TERMS OF USE: MIT License. See bottom of file.
***************************************************************************
*/
#include <Arduino.h>
#include <ezTime.h> // https://github.com/ropg/ezTime
#include <TelnetStream.h> // https://github.com/jandrassy/TelnetStream/commit/1294a9ee5cc9b1f7e51005091e351d60c8cddecf
#include <ArduinoJson.h> // https://arduinojson.org/
#include "Wire.h"
#include "Debug.h"
#include "safeTimers.h"
#include "OTGWSerial.h" // Bron Schelte's Serial class - it upgrades and more
2021-01-30 18:35:11 +01:00
#include "OTGW-Core.h" // Core code for this firmware
//OTGW Nodoshop hardware definitions
#define I2CSCL D1
#define I2CSDA D2
#define BUTTON D3
#define PICRST D5
#define LED1 D4
#define LED2 D0
2021-02-14 19:26:37 +01:00
#define PICFIRMWARE "/gateway.hex"
extern OTGWSerial OTGWSerial(PICRST, LED2);
void fwupgradestart(const char *hexfile);
void blinkLEDnow();
void blinkLEDnow(uint8_t);
void setLed(int8_t, uint8_t);
//Defaults and macro definitions
2021-01-30 16:00:16 +01:00
#define _HOSTNAME "OTGW"
#define SETTINGS_FILE "/settings.ini"
#define DEFAULT_TIMEZONE "Europe/Amsterdam"
#define HOME_ASSISTANT_DISCOVERY_PREFIX "homeassistant" // Home Assistant discovery prefix
#define HOME_ASSISTANT_LWT_TOPIC "homeassistant/status" // home Assistant Birth and Last Will Topic (default = homeassistant/status)
#define HOME_ASSISTANT_LWT_SUBSCRIBE true // Subscribe to Home Assistant Birth and Last Will Topic (default = true)
2020-12-29 14:13:29 +01:00
#define CMSG_SIZE 512
#define JSON_BUFF_MAX 1024
2020-12-29 14:13:29 +01:00
#define CSTR(x) x.c_str()
2021-02-27 13:33:30 +01:00
#define CBOOLEAN(x) (x?"true":"false")
2021-01-03 23:12:19 +01:00
#define CONOFF(x) (x?"On":"Off")
2021-01-31 23:43:52 +01:00
#define CBINARY(x) (x?"1":"0")
#define EVALBOOLEAN(x) (stricmp(x,"true")==0||stricmp(x,"on")==0||stricmp(x,"1")==0)
//Global variables
2020-10-25 22:56:18 +01:00
WiFiClient wifiClient;
2020-10-25 23:25:49 +01:00
bool Verbose = false;
char cMsg[CMSG_SIZE];
char fChar[10];
2021-02-19 01:48:31 +01:00
String lastReset = "";
2021-01-31 23:43:52 +01:00
uint64_t upTimeSeconds = 0;
uint32_t rebootCount = 0;
Timezone myTZ;
2021-02-19 01:48:31 +01:00
String sMessage = "";
2020-12-29 14:13:29 +01:00
const char *weekDayName[] { "Unknown", "Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Unknown" };
const char *flashMode[] { "QIO", "QOUT", "DIO", "DOUT", "Unknown" };
2021-01-31 23:43:52 +01:00
//Information on OTGW
String sPICfwversion = "";
bool bOTGWonline = true;
String errorupgrade = "";
2020-12-29 14:13:29 +01:00
2021-02-19 01:48:31 +01:00
2020-12-29 14:13:29 +01:00
//All things that are settings
String settingHostname = _HOSTNAME;
String settingNodeId = _HOSTNAME;
2021-02-19 01:48:31 +01:00
2020-10-25 22:56:18 +01:00
//MQTT settings
2021-02-08 01:00:21 +01:00
bool statusMQTTconnection = false;
2021-02-09 23:29:39 +01:00
bool settingMQTTenable = false;
2021-01-31 23:43:52 +01:00
bool settingMQTTsecure = false;
2020-10-25 23:25:49 +01:00
String settingMQTTbroker= "192.168.88.254";
int16_t settingMQTTbrokerPort = 1883;
2020-10-25 22:56:18 +01:00
String settingMQTTuser = "";
String settingMQTTpasswd = "";
String settingMQTThaprefix = HOMEASSISTANT_PREFIX;
2021-03-06 10:38:44 +01:00
String settingMQTTtopTopic = "otgw";
String settingMQTTPubNamespace = "";
String settingMQTTSubNamespace = "";
2021-03-06 10:38:44 +01:00
bool settingNTPenable = true;
String settingNTPtimezone = DEFAULT_TIMEZONE;
2021-02-21 14:12:51 +01:00
bool settingLEDblink = true;
2020-10-25 22:56:18 +01:00
2021-02-19 01:48:31 +01:00
2021-02-14 19:26:37 +01:00
//Now load network suff
#include "networkStuff.h"
2021-01-30 18:35:11 +01:00
2021-02-14 19:26:37 +01:00
// That's all folks...
2021-01-30 18:35:11 +01:00
/***************************************************************************
*
* 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.
*
****************************************************************************
*/