[
  {
    "path": "Firmware/Temper_MqttSensor/Temper_MqttSensor.ino",
    "content": "/*\n  Temper ESP8266\n  MQTT firmware\n\n  For more information and help, head over to Temper's github repository:\n  https://github.com/mcer12/Temper-ESP8266\n\n  3D printed case:\n  https://www.thingiverse.com/thing:4126709\n\n  ***\n\n  Copyright (c) 2019 Martin Cerny\n\n  GNU General Public License v3.0\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <https://www.gnu.org/licenses/>.\n*/\n\n#include <FS.h>\n#include <ArduinoJson.h>\n#include <math.h>\n\n#include <ESP8266WiFi.h>\n#include <ESP8266HTTPClient.h>\n#include <WiFiClient.h>\n#include <ESP8266mDNS.h>\n#include <ESP8266WebServer.h>\n#include <ESP8266HTTPUpdateServer.h>\n#include <WiFiUdp.h>\n#include <PubSubClient.h>\n//#include <ArduinoOTA.h>\n#include <TimeLib.h>\n#include <Ticker.h>\n#include <ShiftRegister74HC595.h>\n#include <Wire.h>\n\n#define AP_NAME \"TEMPER_\" // Last 6 MAC address characters will be appended at the end of the OTA name\n#define OTA_NAME \"TEMPER_\" // Last 6 MAC address characters will be appended at the end of the OTA name\n#define FW_VERSION \"1.01\"\n#define OTA_BLINK_SPEED 100\n#define OTA_TIMEOUT 300000 // 5 minutes\n#define CONFIG_BLINK_SPEED 500\n#define CONFIG_TIMEOUT 300000 // 5 minutes\n#define DISPLAY_DARK_TIME 1 // millis, smaller number = brighter display\n#define ADDRESS 0x44 // SHT30 I2C address\n#define WAKE_TIME_DEFAULT 1800 // possible values: 60 = 1min, 600 = 10min, 1800 = 30min, 3600 = 1h\n#define CRYSTAL_COMPENSATION_MULTIPLIER 0.91 // compensate huge inaccuracy in deep sleep timer\n\n// ONLY CHANGE DEFINES BELOW IF YOU KNOW WHAT YOU'RE DOING!\n#define NORMAL_MODE 0\n#define OTA_MODE 1\n#define CONFIG_MODE 2\n#define CONFIG_MODE_LOCAL 3\n#define HASS_REGISTER_MODE 4\n#define UPDATE_SUCCESS 1\n#define UPDATE_FAIL 2\n#if MQTT_MAX_PACKET_SIZE < 512  // If the max message size is too small, throw an error at compile time. See PubSubClient.cpp line 359\n#error \"MQTT_MAX_PACKET_SIZE is too small in libraries/PubSubClient/src/PubSubClient.h, increase it to 512\"\n#endif\n\nuint8_t cols[] = {\n  22, // 1\n  21, // 2\n  20, // 3\n  18, // 4\n  17, // 5\n  15, // 6\n  10, // 7\n  14, // 8\n  13, // 9\n  9, // 10\n  11, // 11\n  12, // 12\n  19, // 13\n};\nuint8_t rows[] = {\n  7, //\n  6, //\n  5, //\n  4, //\n  3, //\n  2, //\n  1, //\n};\n\nuint8_t content[7][13] = {\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n};\nuint8_t buffer[7][13] = {\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n};\nuint8_t ota_screen[7][13] = {\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0,},\n  {0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0,},\n  {0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0,},\n  {0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0,},\n  {0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n};\nuint8_t config_screen[7][13] = {\n  {0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0,},\n  {0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0,},\n  {0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0,},\n  {0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0,},\n  {0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0,},\n  {0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0,},\n  {0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0,},\n};\nuint8_t ok[7][13] = {\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0,},\n  {0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,},\n  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},\n};\n\nuint8_t deviceMode = NORMAL_MODE;\n\nbool otaModeStarted = false;\nvolatile bool ledState = false;\nint buttonTreshold = 2000;\nuint8_t timeUpdateResult = 0; // 0 = no update, 1 = update success, 2 = update fail,\nuint8_t failedAttempts = 0;\n\n// TIMERS\nunsigned long otaMillis, sleepMillis, ledMillis, configTimer, otaTimer;\n\nint counter;\nbyte mac[6];\nrst_info *rinfo;\nunsigned long sleep_time = 3600000000; // 3600000000 = 1h, 10000000 = 10s\nfloat data[6]; // SHT30 buffer\n//static const char ntpServerName[] = \"us.pool.ntp.org\";\n//static const char ntpServerName[] = \"time.nist.gov\";\n//static const char ntpServerName[] = \"time-a.timefreq.bldrdoc.gov\";\n//static const char ntpServerName[] = \"time-b.timefreq.bldrdoc.gov\";\nstatic const char ntpServerName[] = \"pool.ntp.org\";\n\nTicker ticker;\nESP8266WebServer server(80);\nWiFiClient espClient;\nPubSubClient client(espClient);\nDynamicJsonDocument json(2048); // config buffer\nShiftRegister74HC595<3> shift(13, 14, 15);\nWiFiUDP Udp;\nESP8266HTTPUpdateServer httpUpdateServer;\nunsigned int localPort = 8888;  // local port to listen for UDP packets\n\n// the setup function runs once when you press reset or power the board\nvoid setup() {\n  // initialize digital pin LED_BUILTIN as an output.\n  Serial.begin(115200);\n  Serial.println(\"\");\n\n  pinMode(12, INPUT_PULLUP);\n  pinMode(2, INPUT_PULLUP);\n  pinMode(LED_BUILTIN, OUTPUT);\n  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED OFF (inversed)\n  \n  shift.setAllLow(); // set all pins LOW\n\n  if (!SPIFFS.begin()) {\n    Serial.println(\"SPIFFS: Failed to mount file system\");\n  }\n\n  WiFi.macAddress(mac);\n  rinfo  = ESP.getResetInfoPtr();\n  readConfig();\n\n  Serial.print(\"RST Reason: \");\n  Serial.println((*rinfo).reason);\n\n  Wire.begin();\n\n  wifi_connect();\n  mqtt_connect();\n  \n\n  setupNTP();\n  ticker.attach_ms(DISPLAY_DARK_TIME, refreshScreen); // medium brightness\n}\n\n// the loop function runs over and over again forever\nvoid loop() {\n\n  toggleConfigMode();\n\n  if (deviceMode == CONFIG_MODE) {\n    Serial.println(\"CONFIG AP: STARTING CONFIG ACCESS POINT, PRESS ANY BUTTON TO EXIT...\");\n    startConfigPortal();\n    Serial.println(\"CONFIG AP: Returning to normal mode...\");\n    return;\n  }\n\n  if (deviceMode == NORMAL_MODE) {\n\n    if (json[\"reg\"].as<unsigned int>() == 1) {\n      doHassRegister();\n      json[\"reg\"] = 0;\n    }\n\n    getSensorData(ADDRESS, data);\n\n    float cTempFloat = ((((data[0] * 256) + data[1]) * 175) / 65535) - 45;\n    float fTempFloat = (cTempFloat * 1.8) + 32;\n    float humFloat = (((data[3] * 256) + data[4]) * 100) / 65535;\n    int cTemp = round(cTempFloat);\n    int fTemp = round(fTempFloat);\n    int humidity = round(humFloat);\n    Serial.print(\"Temperature C°: \");\n    Serial.println(cTempFloat);\n    Serial.print(\"Temperature F°: \");\n    Serial.println(fTempFloat);\n    Serial.print(\"Humidity: \");\n    Serial.println(humFloat);\n\n    int batt_percentage = batteryPercentage();\n    if (json[\"chrg\"].as<int>() == 1 && batt_percentage > 100) {\n      Serial.println(\"Measurement publishing is disabled, disconnect charger or change settings in Config portal.\");\n    } else {\n      String ttopic = json[\"ttopic\"].as<String>();\n      String htopic = json[\"htopic\"].as<String>();\n      String batt = json[\"batt\"].as<String>();\n      String tpayload;\n      if (json[\"tscale\"].as<unsigned int>() == 1) {\n        tpayload = String(fTempFloat, 2);\n      } else {\n        tpayload = String(cTempFloat, 2);\n      }\n      String hpayload = String(humFloat, 2);\n\n      publishData(ttopic, tpayload);\n      publishData(htopic, hpayload);\n      publishData(batt, String(batt_percentage));\n\n    }\n    if (!buttonWakeUp() && json[\"last_wake\"] > 0) {\n      //clearScreen();\n      //drawImage(ok);\n      //delay(200);\n    }\n    else {\n      if (json[\"tscale\"].as<unsigned int>() == 1) {\n        drawNumberL((fTemp / 10) % 10, 0, 0);\n        drawNumberL((fTemp) % 10, 5, 0);\n      } else {\n        drawNumberL((cTemp / 10) % 10, 0, 0);\n        drawNumberL((cTemp) % 10, 5, 0);\n      }\n      drawDegreesSign();\n      //drawNumberS((cTemp / 100) % 10, 0, 1);\n      //drawNumberS((cTemp / 10) % 10, 4, 1);\n      //drawPixel(8, 5);\n      //drawNumberS(cTemp % 10, 10, 1);\n      //serializeJson(json, Serial);\n      delay(5000);\n    }\n    client.loop();\n    client.disconnect();\n    goToSleep();\n  }\n}\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/config_portal.ino",
    "content": "\nvoid toggleConfigMode() {\n  if ((batteryPercentage() > 100 || digitalRead(12) == LOW) && buttonWakeUp() && (*rinfo).reason != REASON_SOFT_RESTART && (*rinfo).reason != REASON_EXT_SYS_RST) {\n    deviceMode = CONFIG_MODE;\n    configTimer = millis(); // start counter\n  }\n}\n\nvoid startConfigPortal() {\n\n  clearScreen();\n  drawImage(config_screen);\n\n  WiFi.disconnect();\n  WiFi.mode(WIFI_AP);\n  IPAddress ap_ip(10, 10, 10, 1);\n  WiFi.softAPConfig(ap_ip, ap_ip, IPAddress(255, 255, 255, 0));\n  String ap_name = AP_NAME + macLastThreeSegments(mac);\n  WiFi.softAP(ap_name.c_str());\n  IPAddress ip = WiFi.softAPIP();\n  Serial.print(\"IP address: \");\n  Serial.println(ip);\n  httpUpdateServer.setup(&server);\n  server.on(\"/\", handleRoot);\n  server.begin();\n\n  delay(3000); // delay to prevent accidental shut down of the config portal\n\n  while (deviceMode == CONFIG_MODE) { // BLOCKING INFINITE LOOP\n    if (millis() - configTimer > CONFIG_TIMEOUT) {\n      goToSleep();\n      return;\n    }\n    server.handleClient();\n  }\n\n}\n\nvoid handleRoot() {\n  if (server.args()) {\n\n    if (server.hasArg(\"ssid\")) {\n      json[\"ssid\"] = server.arg(\"ssid\");\n    }\n    if (server.hasArg(\"pass\")) {\n      json[\"pass\"] = server.arg(\"pass\");\n    }\n    if (server.hasArg(\"ip\")) {\n      json[\"ip\"] = server.arg(\"ip\");\n    }\n    if (server.hasArg(\"gw\")) {\n      json[\"gw\"] = server.arg(\"gw\");\n    }\n    if (server.hasArg(\"sn\")) {\n      json[\"sn\"] = server.arg(\"sn\");\n    }\n\n    if (server.hasArg(\"broker\")) {\n      json[\"broker\"] = server.arg(\"broker\");\n    }\n    if (server.hasArg(\"port\")) {\n      json[\"port\"] = server.arg(\"port\");\n    }\n    if (server.hasArg(\"mqttusr\")) {\n      json[\"mqttusr\"] = server.arg(\"mqttusr\");\n    }\n    if (server.hasArg(\"mqttpass\")) {\n      json[\"mqttpass\"] = server.arg(\"mqttpass\");\n    }\n    if (server.hasArg(\"htopic\")) {\n      json[\"htopic\"] = server.arg(\"htopic\");\n    }\n    if (server.hasArg(\"ttopic\")) {\n      json[\"ttopic\"] = server.arg(\"ttopic\");\n    }\n    if (server.hasArg(\"batt\")) {\n      json[\"batt\"] = server.arg(\"batt\");\n    }\n    if (server.hasArg(\"wake\")) {\n      json[\"wake\"] = server.arg(\"wake\");\n    }\n    if (server.hasArg(\"reg\")) {\n      json[\"reg\"] = server.arg(\"reg\");\n    }\n    if (server.hasArg(\"tscale\")) {\n      json[\"tscale\"] = server.arg(\"tscale\");\n    }\n    if (server.hasArg(\"chrg\")) {\n      json[\"chrg\"] = server.arg(\"chrg\");\n    }\n    saveConfig();\n  }\n\n  const char* batteryColor = \"#a53e3e\"; // default RED\n  int batteryPercent = batteryPercentage();\n  if (batteryPercent >= 40) batteryColor = \"#a57d3e\";\n  if (batteryPercent >= 60) batteryColor = \"#9ea53e\";\n  if (batteryPercent >= 80) batteryColor = \"#7ca53e\";\n  if (batteryPercent > 100) batteryColor = \"#3e7ea5\";\n\n  String html = \"<!DOCTYPE html><html><head><meta charset=\\\"UTF-8\\\"><meta name=\\\"viewport\\\" content=\\\"width=device-width,initial-scale=1\\\"><title>Temper Configuration</title><style>html,body{margin:0;padding:0;font-size:16px;background:#444444;}body,*{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif;}a{color:inherit;text-decoration:underline;}.wrapper{padding:30px 0;}.container{margin:auto;padding:40px;max-width:500px;color:#fff;background:#000;box-shadow:0 0 100px rgba(0,0,0,.5);border-radius:50px;}.row{margin-bottom:15px;}h1{margin:0 0 10px 0;font-family:Arial,sans-serif;font-weight:300;font-size:2rem;}h1 + p{margin-bottom:30px;}h2{margin:30px 0 0 0;font-family:Arial,sans-serif;font-weight:300;font-size:1.5rem;}p{font-size:.85rem;margin:0 0 20px 0;color:rgba(255,255,255,.7);}label{display:block;width:100%;margin-bottom:5px;}label+p{margin-bottom:5px;}input[type=\\\"text\\\"],input[type=\\\"password\\\"],select{display:inline-block;width:100%;height:42px;line-height:38px;padding:0 20px;color:#fff;border:2px solid #666;background:none;border-radius:5px;transition:.15s;box-shadow:none;outline:none;}input[type=\\\"text\\\"]:hover,input[type=\\\"password\\\"]:hover,select:hover{border-color:#69b6ac;}input[type=\\\"text\\\"]:focus,input[type=\\\"password\\\"]:focus,select:focus{border-color:#a5fff3;}option{color:#000;}button{display:block;width:100%;padding:10px 20px;font-size:1rem;font-weight:700;text-transform:uppercase;background:#43ffe5;border:0;border-radius:5px;cursor:pointer;transition:.15s;outline:none;}button:hover{background:#a5fff3;}.github{margin-top:15px;text-align:center;}.github a{color:#43ffe5;transition:.15s;}.github a:hover{color:#a5fff3;}.bat p{margin:0 0 5px 0;text-align:center;text-transform:uppercase;font-size:.8rem;}.bat >div{position:relative;margin:0 auto 20px;width:300px;height:10px;background:#272727;border-radius:5px;}.bat >div >div{position:absolute;left:0;top:0;bottom:0;border-radius:5px;min-width:10px;}.mac{display:inline-block;margin-top:8px;padding:2px 5px;color:#fff;background:#444;border-radius:3px;}</style><style media=\\\"all and (max-width:520px)\\\">.wrapper{padding:20px 0;}.container{padding:25px 15px;border-radius:0;}</style></head><body><div class=\\\"wrapper\\\">\";\n  html += \"<div class=\\\"bat\\\"><p>Battery level: \" + ((batteryPercent > 100) ? \"Charging\" : (String)batteryPercent + \"%\") + \"</p><div><div style=\\\"background: \" + batteryColor + \";width: \" + ((batteryPercent > 100) ? 100 : batteryPercent) + \"%\\\"></div></div></div>\";\n  html += \"<div class=\\\"container\\\"> <form method=\\\"post\\\" action=\\\"/\\\"> <h1>Temper Configuration</h1> <p>Config AP will automatically shut down after 5 minutes. To leave immediately, disconnect USB power and push the button.</p> <h2>Network settings</h2> <p>Select your network settings here.</p> <div class=\\\"row\\\"> <label for=\\\"ssid\\\">WiFi SSID</label> <input type=\\\"text\\\" id=\\\"ssid\\\" name=\\\"ssid\\\" value=\\\"\";\n  html += json[\"ssid\"].as<const char*>();\n  html += \"\\\"> </div> <div class=\\\"row\\\"> <label for=\\\"pass\\\">WIFI Password</label> <input type=\\\"password\\\" id=\\\"pass\\\" name=\\\"pass\\\" value=\\\"\";\n  html += json[\"pass\"].as<const char*>();\n  html += \"\\\"> </div> <h2>Static IP settings (optional)</h2> <p>Optional settings for static IP, in some cases this might speed up response time. All 3 need to be set and IP should be reserved in router's DHCP settings.\";\n  html += \"<br>MAC address: <span class=\\\"mac\\\">\";\n  html += macToStr(mac);\n  html += \"</span></p>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"ip\\\">IP Address (optional):</label> <input type=\\\"text\\\" id=\\\"ip\\\" name=\\\"ip\\\" value=\\\"\";\n  html += json[\"ip\"].as<const char*>();\n  html += \"\\\"> </div> <div class=\\\"row\\\"> <label for=\\\"gw\\\">Gateway IP (optional):</label> <input type=\\\"text\\\" id=\\\"gw\\\" name=\\\"gw\\\" value=\\\"\";\n  html += json[\"gw\"].as<const char*>();\n  html += \"\\\"> </div> <div class=\\\"row\\\"> <label for=\\\"sn\\\">Subnet mask (optional):</label> <input type=\\\"text\\\" id=\\\"sn\\\" name=\\\"sn\\\" value=\\\"\";\n  html += json[\"sn\"].as<const char*>();\n  html += \"\\\"> </div>\";\n  html += \"<h2>MQTT Configuration</h2>\";\n  html += \"<p>Set your broker address as an IP or name address.<br>For example: \\\"broker.example.com\\\" or \\\"192.168.0.1\\\"</p>\";\n  html += \"<p>You can also define user and password for more security.<br></p>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"broker\\\">Broker adress</label> <input type=\\\"text\\\" id=\\\"broker\\\" name=\\\"broker\\\" value=\\\"\";\n  html += json[\"broker\"].as<const char*>();\n  html += \"\\\"> </div>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"port\\\">Broker port</label> <input type=\\\"text\\\" id=\\\"port\\\" name=\\\"port\\\" value=\\\"\";\n  html += json[\"port\"].as<const char*>();\n  html += \"\\\"> </div>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"mqttusr\\\">User (optional)</label> <input type=\\\"text\\\" id=\\\"mqttusr\\\" name=\\\"mqttusr\\\" value=\\\"\";\n  html += json[\"mqttusr\"].as<const char*>();\n  html += \"\\\"> </div>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"mqttpass\\\">Password (optional)</label> <input type=\\\"password\\\" id=\\\"mqttpass\\\" name=\\\"mqttpass\\\" value=\\\"\";\n  html += json[\"mqttpass\"].as<const char*>();\n  html += \"\\\"> </div>\";\n  html += \"<h2>MQTT Topic settings</h2> <p>Assign MQTT Topics and wake-up interval.<br>\";\n  html += \"Use shortcode <strong>[id]</strong> to add 6-character unique identifier. This is especially useful if you have more Temper sensors and want to distinguish between them.</p>\";\n  html += \"<p>Use topics below with Home Assistant MQTT auto-discovery:<br>\";\n  html += \"Temperature: <b>homeassistant/sensor/temper_[id]/temp/state</b><br>\";\n  html += \"Humidity: <b>homeassistant/sensor/temper_[id]/hum/state</b><br>\";\n  html += \"Battery: <b>homeassistant/sensor/temper_[id]/battery/state</b></p>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"ttopic\\\">Temperature topic</label>\";\n  html += \"<input type=\\\"text\\\" id=\\\"ttopic\\\" name=\\\"ttopic\\\" value=\\\"\";\n  html += json[\"ttopic\"].as<const char*>();\n  html += \"\\\"></div>\";\n  html += \"<div class=\\\"row\\\"> <label for=\\\"htopic\\\">Humidity topic</label>\";\n  html += \"<input type=\\\"text\\\" id=\\\"htopic\\\" name=\\\"htopic\\\" value=\\\"\";\n  html += json[\"htopic\"].as<const char*>();\n  html += \"\\\"></div>\";\n  html += \"<div class=\\\"row\\\"><label for=\\\"batt\\\">Battery monitoring Topic</label>\";\n  html += \"<input type=\\\"text\\\" id=\\\"batt\\\" name=\\\"batt\\\" value=\\\"\";\n  html += json[\"batt\"].as<const char*>();\n  html += \"\\\"></div>\";\n\n  html += \"<h2>Other settings</h2><p>More settings you might find useful.</p>\";\n\n  html += \"<div class=\\\"row\\\"><label for=\\\"tscale\\\">Temperature scale</label>\";\n  html += \"<select id=\\\"tscale\\\" name=\\\"tscale\\\">\";\n  unsigned int tscale = json[\"tscale\"].as<unsigned int>();\n  html += \"<option value=\\\"0\\\"\";\n  if (tscale == 0) html += \" selected\";\n  html += \">Celsius</option>\";\n  html += \"<option value=\\\"1\\\"\";\n  if (tscale == 1) html += \" selected\";\n  html += \">Fahrenheit</option>\";\n  html += \"</select></div>\";\n\n  html += \"<div class=\\\"row\\\"><label for=\\\"reg\\\">Register in HASS on next wake-up</label>\";\n  html += \"<select id=\\\"reg\\\" name=\\\"reg\\\">\";\n  html += \"<option value=\\\"0\\\" selected>No</option>\";\n  html += \"<option value=\\\"1\\\">Yes</option>\";\n  html += \"</select></div>\";\n\n  html += \"<div class=\\\"row\\\"><label for=\\\"wake\\\">Wake-up interval</label>\";\n  html += \"<select id=\\\"wake\\\" name=\\\"wake\\\">\";\n  unsigned int wake = json[\"wake\"].as<unsigned int>();\n  html += \"<option value=\\\"60\\\"\";\n  if (wake == 60) html += \" selected\";\n  html += \">1 min.</option>\";\n  html += \"<option value=\\\"600\\\"\";\n  if (wake == 600) html += \" selected\";\n  html += \">10 min.</option>\";\n  html += \"<option value=\\\"1800\\\"\";\n  if (wake == 1800) html += \" selected\";\n  html += \">30 min.</option>\";\n  html += \"<option value=\\\"3600\\\"\";\n  if (wake == 3600) html += \" selected\";\n  html += \">60 min.</option>\";\n  html += \"</select></div>\";\n\n  html += \"<div class=\\\"row\\\"><label for=\\\"chrg\\\">Disable measurements publishing when charging</label>\";\n  html += \"<select id=\\\"chrg\\\" name=\\\"chrg\\\">\";\n  int chrg = json[\"chrg\"].as<int>();\n  html += \"<option value=\\\"1\\\"\";\n  if (chrg == 1) html += \" selected\";\n  html += \">Yes</option>\";\n  html += \"<option value=\\\"0\\\"\";\n  if (chrg == 0) html += \" selected\";\n  html += \">No</option>\";\n  html += \"</select></div>\";\n\n  html += \"<div class=\\\"row\\\"> <button type=\\\"submit\\\">Save and reboot</button> </div> </form> </div>\";\n  html += \"<div class=\\\"github\\\"> <p>MQTT firmware \";\n  html += FW_VERSION;\n  html += \", check out <a href=\\\"https://github.com/mcer12/Temper-ESP8266\\\" target=\\\"_blank\\\"><strong>Temper</strong> on GitHub</a></p> </div>\";\n  html += \"</div> </body> </html>\";\n  server.send(200, \"text/html\", html);\n\n  if (server.args()) {\n    delay(1000);\n    saveConfig();\n    ESP.reset();\n    delay(100);\n  }\n}\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/fns.ino",
    "content": "\nvoid goToSleep() {\n  ticker.detach();\n  shift.setAllLow(); // set all pins LOW\n  unsigned int seconds = json[\"wake\"].as<unsigned int>();\n  Serial.println(\"SLEEP: Save timestamp before sleep\");\n  json[\"last_wake\"] = now(); // remember when the device was put to sleep to know if it was woken up by timer or button\n  saveConfig();\n  Serial.print(\"SLEEP: Going to sleep for \");\n  Serial.print(seconds);\n  Serial.println(\" seconds.\");\n  yield();\n  delay(10);\n  ESP.deepSleep(seconds * 1000000); // convert seconds to us\n  delay(100);\n  yield();\n}\n\nbool buttonWakeUp() {\n  unsigned int startupTime = now() - round(millis() / 1000); // real startup time, substitute millis to get accurate bootup time.\n  /*\n    Serial.print(\"Now: \");\n    Serial.println(now());\n    Serial.print(\"Compensated startup timestamp: \");\n    Serial.println(startupTime);\n    Serial.print(\"last_wake: \");\n    Serial.println(json[\"last_wake\"].as<unsigned int>());\n    Serial.print(\"Compensated startup timestamp - last_wake: \");\n    Serial.println(startupTime - json[\"last_wake\"].as<unsigned int>());\n    Serial.print(\"wake timeout: \");\n    Serial.println(json[\"wake\"].as<unsigned int>());\n    Serial.print(\"wake timeout compensated: \");\n    Serial.println(json[\"wake\"].as<unsigned int>() * CRYSTAL_COMPENSATION_MULTIPLIER);\n  */\n  if (startupTime - json[\"last_wake\"].as<unsigned int>() < json[\"wake\"].as<unsigned int>() * CRYSTAL_COMPENSATION_MULTIPLIER) {\n    Serial.println(\"Button wake-up\");\n    return true;\n  }\n  Serial.println(\"Timer wake-up\");\n  return false;\n}\n\nString macToStr(const uint8_t* mac) {\n  String result;\n  for (int i = 0; i < 6; ++i) {\n    if (mac[i] < 0x10) result += \"0\";\n    result += String(mac[i], HEX);\n    if (i < 5)\n      result += ':';\n  }\n  result.toUpperCase();\n  return result;\n}\n\nString macLastThreeSegments(const uint8_t* mac) {\n  String result;\n  for (int i = 3; i < 6; ++i) {\n    if (mac[i] < 0x10) result += \"0\";\n    result += String(mac[i], HEX);\n  }\n  result.toUpperCase();\n  return result;\n}\n\nvoid wifi_connect() {\n\n  const char* ssid = json[\"ssid\"].as<const char*>();\n  const char* pass = json[\"pass\"].as<const char*>();\n  const char* ip = json[\"ip\"].as<const char*>();\n  const char* gw = json[\"gw\"].as<const char*>();\n  const char* sn = json[\"sn\"].as<const char*>();\n\n  const char* broker = json[\"broker\"].as<const char*>();\n  int port = json[\"port\"].as<int>();\n\n  if (ssid != NULL && pass != NULL && ssid[0] != '\\0' && pass[0] != '\\0') {\n    Serial.println(\"WIFI: Setting up wifi\");\n    WiFi.mode(WIFI_STA);\n\n    if (ip != NULL && gw != NULL && sn != NULL && ip[0] != '\\0' && gw[0] != '\\0' && sn[0] != '\\0') {\n      IPAddress ip_address, gateway_ip, subnet_mask;\n      if (!ip_address.fromString(ip) || !gateway_ip.fromString(gw) || !subnet_mask.fromString(sn)) {\n        Serial.println(\"Error setting up static IP, using auto IP instead. Check your configuration.\");\n      } else {\n        WiFi.config(ip_address, gateway_ip, subnet_mask);\n      }\n    }\n\n    // serializeJson(json, Serial);\n\n    WiFi.begin(ssid, pass);\n\n    for (int i = 0; i < 100; i++) {\n      if (WiFi.status() != WL_CONNECTED) {\n        if (i > 50) {\n          deviceMode = CONFIG_MODE;\n          Serial.print(\"WIFI: Failed to connect to: \");\n          Serial.println(ssid);\n          break;\n        }\n        delay(200);\n      } else {\n        Serial.println(\"WIFI: Connected...\");\n        Serial.print(\"SSID: \");\n        Serial.println(WiFi.SSID());\n        Serial.print(\"WIFI: Mac address: \");\n        Serial.println(WiFi.macAddress());\n        Serial.print(\"WIFI: IP address: \");\n        Serial.println(WiFi.localIP());\n        break;\n      }\n    }\n\n    // MQTT SETUP\n    if (broker != NULL && broker[0] != '\\0' && port != 0) {\n      client.setServer(broker, port);\n    } else {\n      deviceMode = CONFIG_MODE;\n      Serial.println(\"MQTT: Broker address or port is not set, going to config mode.\");\n    }\n\n  } else {\n    deviceMode = CONFIG_MODE;\n    Serial.println(\"SETTINGS: No credentials set, going to config mode.\");\n    startConfigPortal();\n    //goToSleep();\n  }\n}\n\nvoid mqtt_connect() {\n  if(deviceMode == CONFIG_MODE) return;\n  const char* mqtt_usr = json[\"mqttusr\"].as<const char*>();\n  const char* mqtt_pass = json[\"mqttpass\"].as<const char*>();\n  int i = 0;\n  while (!client.connected() && i < 5) { // Try 5 times, then give up and go to sleep.\n    Serial.println(\"Attempting MQTT connection...\");\n    if (mqtt_usr[0] != '\\0' && mqtt_pass[0] != '\\0') {\n      if (client.connect(String(\"temper_\" + macLastThreeSegments(mac)).c_str(), mqtt_usr, mqtt_pass)) {\n        Serial.println(\"MQTT connected using credentials.\");\n        return;\n      }\n    } else {\n      if (client.connect(String(\"temper_\" + macLastThreeSegments(mac)).c_str())) {\n        Serial.println(\"MQTT connected anonymously.\");\n        return;\n      }\n    }\n    Serial.print(\"MQTT connection attempt failed, rc=\");\n    Serial.println(client.state());\n    ++i;\n    delay(10);\n  }\n  deviceMode = CONFIG_MODE;\n}\n\nbool publishData(String topic, String payload) {\n  topic.replace(\"[id]\", macLastThreeSegments(mac));\n  if (topic.length() > 0 && payload.length() > 0) {\n    return client.publish(topic.c_str(), payload.c_str());\n  } else {\n    Serial.println(\"Target is not defined. Set it in config portal.\");\n  }\n}\n\n/* Read analog input for battery measurement */\nint ReadAIN()\n{\n  int Read = analogRead(A0);\n  int num = 10;\n\n  for (int i = 0 ; i < num ; i++)\n  {\n    int newRead = analogRead(A0);\n    if (newRead > Read)\n    {\n      Read = newRead;\n    }\n    delay(1);\n  }\n  return (Read);\n}\n\n/* Battery percentage estimation, this is not very accurate but close enough */\nuint8_t batteryPercentage() {\n  int analogValue = ReadAIN();\n  if (analogValue > 1000) return 101; // CHARGING\n  if (analogValue > 960) return 100;\n  if (analogValue > 940) return 90;\n  if (analogValue > 931) return 80;\n  if (analogValue > 922) return 70;\n  if (analogValue > 913) return 60; // 3.8v ... 920\n  if (analogValue > 904) return 50;\n  if (analogValue > 895) return 40;\n  if (analogValue > 886) return 30;\n  if (analogValue > 877) return 20; // 3.65v ... 880\n  if (analogValue > 868) return 10;\n  return 0;\n}\n\nbool readConfig() {\n  File stateFile = SPIFFS.open(\"/config.json\", \"r\");\n  if (!stateFile) {\n    Serial.println(\"Failed to read config file... first run?\");\n    Serial.println(\"Creating new file...\");\n    //json[\"ssid\"] = json[\"pass\"] = json[\"ip\"] = json[\"gw\"] = json[\"sn\"] = json[\"broker\"] = json[\"port\"] = json[\"mqttusr\"] = json[\"mqttpass\"]  = json[\"ttopic\"]  = json[\"htopic\"] = json[\"batt\"] = \"\";\n    json[\"wake\"] = WAKE_TIME_DEFAULT;\n    saveConfig();\n    return false;\n  }\n  DeserializationError error = deserializeJson(json, stateFile.readString());\n  stateFile.close();\n  return true;\n}\n\nbool saveConfig() {\n  File configFile = SPIFFS.open(\"/config.json\", \"w\");\n  if (!configFile) {\n    Serial.println(\"Failed to open config file for writing\");\n    return false;\n  }\n  serializeJson(json, configFile);\n  //serializeJson(json, Serial);\n  configFile.close();\n  return true;\n}\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/fonts.ino",
    "content": "uint8_t digitsLarge[10][7][4] = {\n  {\n    {1, 1, 1, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 1, 1, 1,},\n  },\n  {\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {1, 1, 1, 1,},\n    {1, 0, 0, 0,},\n    {1, 0, 0, 0,},\n    {1, 1, 1, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {1, 1, 1, 1,},\n  },\n  {\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {1, 0, 0, 0,},\n    {1, 0, 0, 0,},\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {1, 1, 1, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {1, 0, 0, 0,},\n    {1, 0, 0, 0,},\n    {1, 1, 1, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 1, 1, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 1, 1, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 1, 1, 1,},\n  },\n  {\n    {1, 1, 1, 1,},\n    {1, 0, 0, 1,},\n    {1, 0, 0, 1,},\n    {1, 1, 1, 1,},\n    {0, 0, 0, 1,},\n    {0, 0, 0, 1,},\n    {1, 1, 1, 1,},\n  },\n};\n\nuint8_t digitsSmall[10][5][3] = {\n  {\n    {1, 1, 1,},\n    {1, 0, 1,},\n    {1, 0, 1,},\n    {1, 0, 1,},\n    {1, 1, 1,},\n  },\n  {\n    {0, 0, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {1, 1, 1,},\n    {1, 0, 0,},\n    {1, 1, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {1, 1, 1,},\n  },\n  {\n    {1, 0, 1,},\n    {1, 0, 1,},\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {1, 0, 0,},\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {1, 1, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {1, 0, 0,},\n    {1, 1, 1,},\n    {1, 0, 1,},\n    {1, 1, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n    {0, 0, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {1, 0, 1,},\n    {1, 1, 1,},\n    {1, 0, 1,},\n    {1, 1, 1,},\n  },\n  {\n    {1, 1, 1,},\n    {1, 0, 1,},\n    {1, 1, 1,},\n    {0, 0, 1,},\n    {1, 1, 1,},\n  },\n};\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/hass_register.ino",
    "content": "\nvoid sendConfig(StaticJsonDocument<512>& payload, String configTopic) {\n  char output[512];\n  serializeJson(payload, output);\n  Serial.println(output);\n  if (client.publish(configTopic.c_str(), output, true)) {\n    Serial.print(\"Discovery data sent.\");\n  } else {\n    Serial.print(\"Failed to send discovery data, error = \");\n    Serial.println(client.state());\n  }\n  payload.clear();\n}\n\nvoid doHassRegister() {\n  Serial.println(\"Starting HASS MQTT registration...\");\n  Serial.println(\"Attemting to send TEMPERATURE discovery data...\");\n  StaticJsonDocument<512> payload;\n  size_t payloadSize;\n  String configTopic = \"homeassistant/sensor/temper_\" + macLastThreeSegments(mac) + \"/temp/config\";\n  String stateTopic = \"homeassistant/sensor/temper_\" + macLastThreeSegments(mac) + \"/temp/state\";\n\n  payload[\"unique_id\"] = \"temper_\" + macLastThreeSegments(mac) + \"_temperature\";\n  payload[\"name\"] = \"Temper \" + macLastThreeSegments(mac) + \" - Temperature\";\n  payload[\"stat_t\"] = stateTopic;\n  //  payload[\"ic\"] = \"mdi:coolant-temperature\";\n  //  payload[\"exp_aft\"] = \"1\";\n  payload[\"dev_cla\"] = \"temperature\";\n  payload[\"unit_of_meas\"] = \"°C\";\n  JsonObject device = payload.createNestedObject(\"device\");\n  device[\"ids\"] = \"temper\" + macLastThreeSegments(mac);\n  device[\"name\"] = \"Temper - temperature & humidity sensor\";\n  device[\"mf\"] = \"https://github.com/mcer12/Temper-ESP8266\";\n  device[\"mdl\"] = \"Temper-ESP8266\";\n  device[\"sw\"] = FW_VERSION;\n  sendConfig(payload, configTopic);\n\n  client.loop();\n\n  Serial.println(\"Done. Make sure to use following topic for TEMPERATURE:\");\n  Serial.println(stateTopic);\n  Serial.println(\"Attemting to send HUMIDITY discovery data...\");\n\n  configTopic = \"homeassistant/sensor/temper_\" + macLastThreeSegments(mac) + \"/hum/config\";\n  stateTopic = \"homeassistant/sensor/temper_\" + macLastThreeSegments(mac) + \"/hum/state\";\n\n  payload[\"uniq_id\"] = \"temper_\" + macLastThreeSegments(mac) + \"_humidity\";\n  payload[\"name\"] = \"Temper \" + macLastThreeSegments(mac) + \" - Humidity\";\n  payload[\"stat_t\"] = stateTopic;\n  //  payload[\"ic\"] = \"mdi:battery-outline\";\n  payload[\"dev_cla\"] = \"humidity\";\n  payload[\"unit_of_meas\"] = \"%\";\n  //payload[\"val_tpl\"] = \"{% if value > 100 %}999{% else %}{{value}}{% endif %}\";\n  device = payload.createNestedObject(\"device\");\n  device[\"ids\"] = \"temper\" + macLastThreeSegments(mac);\n  sendConfig(payload, configTopic);\n\n  client.loop();\n\n  Serial.println(\"Done. Make sure to use following topic for HUMIDITY:\");\n  Serial.println(stateTopic);\n\n  Serial.println(\"Attemting to send BATTERY discovery data...\");\n\n  // And battery...\n  configTopic = \"homeassistant/sensor/temper_\" + macLastThreeSegments(mac) + \"/battery/config\";\n  stateTopic = \"homeassistant/sensor/temper_\" + macLastThreeSegments(mac) + \"/battery/state\";\n\n  payload[\"uniq_id\"] = \"temper_\" + macLastThreeSegments(mac) + \"_battery\";\n  payload[\"name\"] = \"Temper \" + macLastThreeSegments(mac) + \" - Battery\";\n  payload[\"stat_t\"] = stateTopic;\n  payload[\"ic\"] = \"mdi:battery-outline\";\n  payload[\"dev_cla\"] = \"battery\";\n  payload[\"unit_of_meas\"] = \"%\";\n  //payload[\"val_tpl\"] = \"{% if value > 100 %}999{% else %}{{value}}{% endif %}\";\n  device = payload.createNestedObject(\"device\");\n  device[\"ids\"] = \"temper\" + macLastThreeSegments(mac);\n  sendConfig(payload, configTopic);\n\n  client.loop();\n  client.disconnect();\n\n  Serial.println(\"Done. Make sure to use following topic for BATTERY:\");\n  Serial.println(stateTopic);\n\n  Serial.println(\"Registration completed, check for new device in Home Assistant MQTT integration.\");\n\n}\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/ntp.ino",
    "content": "/*-------- NTP code ----------*/\n\nconst int NTP_PACKET_SIZE = 48; // NTP time is in the first 48 bytes of message\nbyte packetBuffer[NTP_PACKET_SIZE]; //buffer to hold incoming & outgoing packets\n\ntime_t getNtpTime()\n{\n  IPAddress ntpServerIP; // NTP server's ip address\n\n  while (Udp.parsePacket() > 0) ; // discard any previously received packets\n  //Serial.println(\"Transmit NTP Request\");\n  // get a random server from the pool\n  WiFi.hostByName(ntpServerName, ntpServerIP);\n  //Serial.print(ntpServerName);\n  //Serial.print(\": \");\n  //Serial.println(ntpServerIP);\n  sendNTPpacket(ntpServerIP);\n  uint32_t beginWait = millis();\n  while (millis() - beginWait < 1500) {\n    int size = Udp.parsePacket();\n    if (size >= NTP_PACKET_SIZE) {\n      Serial.println(\"NTP: data received.\");\n      Udp.read(packetBuffer, NTP_PACKET_SIZE);  // read packet into the buffer\n      unsigned long secsSince1900;\n      // convert four bytes starting at location 40 to a long integer\n      secsSince1900 =  (unsigned long)packetBuffer[40] << 24;\n      secsSince1900 |= (unsigned long)packetBuffer[41] << 16;\n      secsSince1900 |= (unsigned long)packetBuffer[42] << 8;\n      secsSince1900 |= (unsigned long)packetBuffer[43];\n      return secsSince1900 - 2208988800UL;\n    }\n  }\n\n  //Serial.println(\"No NTP Response :-(\");\n\n  return 0; // return 0 if unable to get the time\n}\n\ntime_t getNtpLocalTime() {\n  int retries = 3;\n  int iterator = 0;\n  time_t receivedTime = getNtpTime();\n\n  while (iterator < retries && receivedTime == 0) {\n    receivedTime = getNtpTime();\n    iterator++;\n  }\n  if (receivedTime == 0) {\n    timeUpdateResult = UPDATE_FAIL;\n    failedAttempts += 1;\n    return 0;\n  }\n  timeUpdateResult = UPDATE_SUCCESS;\n  failedAttempts = 0;\n  return receivedTime;\n\n}\n\n// send an NTP request to the time server at the given address\nvoid sendNTPpacket(IPAddress &address)\n{\n  // set all bytes in the buffer to 0\n  memset(packetBuffer, 0, NTP_PACKET_SIZE);\n  // Initialize values needed to form NTP request\n  // (see URL above for details on the packets)\n  packetBuffer[0] = 0b11100011;   // LI, Version, Mode\n  packetBuffer[1] = 0;     // Stratum, or type of clock\n  packetBuffer[2] = 6;     // Polling Interval\n  packetBuffer[3] = 0xEC;  // Peer Clock Precision\n  // 8 bytes of zero for Root Delay & Root Dispersion\n  packetBuffer[12] = 49;\n  packetBuffer[13] = 0x4E;\n  packetBuffer[14] = 49;\n  packetBuffer[15] = 52;\n  // all NTP fields have been given values, now\n  // you can send a packet requesting a timestamp:\n  Udp.beginPacket(address, 123); //NTP requests are to port 123\n  Udp.write(packetBuffer, NTP_PACKET_SIZE);\n  Udp.endPacket();\n}\n\nvoid setupNTP() {\n  Udp.begin(localPort);\n  Serial.println(\"NTP: Attempting sync...\");\n  setSyncProvider(getNtpLocalTime);\n  setSyncInterval(3600);\n}\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/screen_fns.ino",
    "content": "void refreshScreen() {\n\n  for (int row = 0; row < sizeof(rows); row++) {\n    for (int col = 0; col < sizeof(cols); col++) {\n      shift.setNoUpdate(cols[col], content[row][col]);\n    }\n    shift.setNoUpdate(rows[row], 1); // set single pin HIGH\n    shift.updateRegisters(); // update the pins to the set values\n    shift.setNoUpdate(rows[row], 0); // set single pin HIGH\n  }\n  shift.set(rows[sizeof(rows) - 1], 0); // set single pin HIGH\n\n}\n\nvoid splitTo(uint8_t result[10][25]) {\n\n}\n\nvoid drawNumberL(int digit, int x, int y) {\n  for (uint8_t row = 0; row < sizeof(digitsLarge[digit]) / sizeof(digitsLarge[digit][0]); row++) {\n    for (uint8_t col = 0; col < sizeof(digitsLarge[digit][0]); col++) {\n      content[row + y][col + x] = digitsLarge[digit][row][col];\n    }\n  }\n}\n\nvoid drawNumberS(int digit, int x, int y) {\n  for (uint8_t row = 0; row < sizeof(digitsSmall[digit]) / sizeof(digitsSmall[digit][0]); row++) {\n    for (uint8_t col = 0; col < sizeof(digitsSmall[digit][0]); col++) {\n      content[row + y][col + x] = digitsSmall[digit][row][col];\n    }\n  }\n}\n\nvoid bufferNumberL(int digit, int x, int y) {\n  for (uint8_t row = 0; row < sizeof(digitsLarge[digit]) / sizeof(digitsLarge[digit][0]); row++) {\n    for (uint8_t col = 0; col < sizeof(digitsLarge[digit][0]); col++) {\n      buffer[row + y][col + x] = digitsLarge[digit][row][col];\n    }\n  }\n}\n\nvoid drawPixel(uint8_t x, uint8_t y) {\n  content[y][x] = 1;\n}\n\nvoid drawImage(uint8_t image[7][13]) {\n  for (uint8_t row = 0; row < sizeof(rows); row++) {\n    for (uint8_t col = 0; col < sizeof(cols); col++) {\n      content[row][col] = image[row][col];\n    }\n  }\n}\n\nvoid drawDegreesSign() {\n  drawPixel(10, 0);\n  drawPixel(11, 0);\n  drawPixel(12, 0);\n  drawPixel(10, 1);\n  drawPixel(12, 1);\n  drawPixel(10, 2);\n  drawPixel(11, 2);\n  drawPixel(12, 2);\n}\n\nvoid blankPixel(uint8_t x, uint8_t y) {\n  content[y][x] = 0;\n}\n\nvoid clearScreen() {\n  for (uint8_t row = 0; row < sizeof(rows); row++) {\n    for (uint8_t col = 0; col < sizeof(cols); col++) {\n      content[row][col] = 0;\n    }\n  }\n}\n"
  },
  {
    "path": "Firmware/Temper_MqttSensor/sensor.ino",
    "content": "\nvoid getSensorData(int address, float dataBuffer[6]) {\n  Wire.beginTransmission(address);\n  // Send measurement command\n  Wire.write(0x2C);\n  Wire.write(0x06);\n  // Stop I2C transmission \n  Wire.endTransmission();\n  delay(200); // default 500, lets try lower\n  Wire.requestFrom(address, 6);\n\n  if (Wire.available() == 6)\n  {\n    dataBuffer[0] = Wire.read();\n    dataBuffer[1] = Wire.read();\n    dataBuffer[2] = Wire.read();\n    dataBuffer[3] = Wire.read();\n    dataBuffer[4] = Wire.read();\n    dataBuffer[5] = Wire.read();\n  }\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<https://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<https://www.gnu.org/licenses/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "# Temper-ESP8266\nTemper is a compact, low power temperature sensor based on ESP8266 and SHT30 with large 13x7 pixel led display.  \n\n- Low power, only consumes ~30-40uA while asleep. With 400mA battery it should last months on single charge.\n- SHT30 provides very accurate, factory calibrated measurement capability.\n- Super simple Web config ([see screenshot here](https://github.com/mcer12/Temper-ESP8266/wiki/Config-portal-&-OTA))\n- Home Assistant compatible including auto-discovery, but can be used with any other platform supporting MQTT.\n- 13x7 pixel led display\n- TP4054 charging IC onboard for easy charging via USB\n- Can be attached to a wall using magnets (see thingiverse for details).\n\n## How does this thing work?\n- After it's set up in config portal, it periodically wakes up and publishes Temperature, Humidity and Battery percentage through MQTT\n- Pushing the reset button will force send current data and show Temperature on the display\n\n![alt text](https://github.com/mcer12/Temper-ESP8266/raw/master/Images/with_cover_green.jpg)\n\n![alt text](https://github.com/mcer12/Temper-ESP8266/raw/master/Images/pcb.jpg)\n\n## What you need to make it yourself\n- Hot air station / reflow oven (SHT30 has pins at the bottom, can't be hand-soldered)\n- Components listed in \"PCB and BOM\" directory (lcsc and aliexpress links provided)\n- Plastic case ([download on thingiverse](https://www.thingiverse.com/thing:4126709))\n- Hot glue to fixate pcb in the enclosure\n- Patience\n- You can order it with most of the components pre-assembled from JLCPCB (you can find Pick&Place + BOM + Gerber in the above mentioned directory). Partially assambled pcbs will cost you little over $60 for 10pcs, see components information in \"PCB and BOM\" directory.\n\n## Wiki\n- [Flashing](https://github.com/mcer12/Temper-ESP8266/wiki/Flashing)\n- [Config portal](https://github.com/mcer12/Temper-ESP8266/wiki/Config-portal-&-OTA)\n- [Home Assistant](https://github.com/mcer12/Temper-ESP8266/wiki/Home-Assistant)\n- [Notes and considerations](https://github.com/mcer12/Temper-ESP8266/wiki/Some-notes-and-considerations)\n"
  }
]