thermostat with Oled display

elmaya
Posts: 1482
Joined: Wed Jun 27, 2018 5:48 pm
Location: El Saucejo - Sevilla

eradek wrote: Sun Apr 03, 2022 12:13 pm Hi Elmaya,

I am using your thermostat in couple of devices. Is there a chance for upgraded code for the old version without rotary encoder?
there is something. :D

temperature from 0º to 100º in steps of 1ºC.
additional relay (Gpio 4 "D2").
3 buttons for local control.

The additional relay allows configuration as a power switch, light switch or stairs timer.

The buttons have the following functions.
Gpio 12 "D6":
ON_CLICK_1 = toggle Auto/Manual mode,
ON_CLICK_2 = toggle manual On/Off,
ON_HOLD 1 second = toggle relay 2,
ON_HOLD 10 seconds = WiFiConfig.

Gpio 14 "D5":
ON_CLICK_1 = increases the desired temperature "preset" by 1ºC,
ON_HOLD = increases successively in steps of 1ºC.

Gpio 13 "D7":
ON_CLICK_1 = decreases the desired temperature "preset" by 1ºC,
ON_HOLD = decreases successively in steps of 1ºC.


Gpio 3 "RX" = DS18B20.
Gpio 5 "D1" = thermostat relay.
Gpio 4 "D2" = additional relay.
Gpio 0 "D3" = SDA "oled".
Gpio 2 "D4" = SCL "oled".
Gpio 14 "D5" = pushbutton temp +.
Gpio 12 "D6" = mode button.
Gpio 13 "D7" = pushbutton temp -.
Gpio 15 "D8" = Led auto/man mode, connected to GND through resistor "optional".
Gpio 16 "D0" = stateLed, connected to +3.3v through resistor "optional".

Code: Select all

/*
  Copyright (C) AC SOFTWARE SP. Z O.O.

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
  as published by the Free Software Foundation; either version 2
  of the License, or (at your option) any later version.
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/
#define supla_lib_config_h_  // silences debug messages
#include "LittleFS.h"
#include <WiFiManager.h>
#include <ArduinoJson.h>
#include <EEPROM.h>
#include <ESP8266TrueRandom.h>
#include <SuplaDevice.h>              //  Supla device 2.4.1
#include <supla/control/relay.h>
#include <supla/control/button.h>
#include <supla/sensor/DS18B20.h>
#include <supla/control/dimmer_base.h>
#include <supla/network/esp_wifi.h>
#include <supla/device/status_led.h>
#define STORAGE_OFFSET 512
#include <supla/storage/eeprom.h>
Supla::Eeprom eeprom(STORAGE_OFFSET);
Supla::ESPWifi wifi("SSID", "PASS");  //------ Do not change----wifimanager takes care------
#include "SSD1306Wire.h" //----- 0.96 Oled --- https://github.com/ThingPulse/esp8266-oled-ssd1306
SSD1306Wire  display(0x3c, 0, 2);  // D3-SDA  D4-SCL ----- 0.96 Oled ---
//#include "SH1106Wire.h" //----- 1.3 Oled ---
//SH1106Wire display(0x3c, 0, 2);  // D3-SDA  D4-SCL ----- 1.3 Oled ---
extern "C"
{
#include "user_interface.h"
}

//#define D0 16  //no internal pullup resistor
//#define D1  5
//#define D2  4
//#define D3  0  //must not be pulled low during power on/reset, toggles value during boot
//#define D4  2  //must not be pulled low during power on/reset, toggles value during boot
//#define D5 14
//#define D6 12
//#define D7 13
//#define D8 15  //must not be pulled high during power on/reset
//#define RX  3  //High at boot
//#define TX  1  //must not be pulled low during power on/reset

int ds_pin = 3;          //RX --  3
int relay_pin = 5;       //D1 --  5
int relay2_pin = 4;      //D2 --  4
int button_pin = 12;     //D6 --  12
#define button2_pin 14   //D5 --  14
#define button3_pin 13   //D7 --  13
#define autoManLed  15   //D8 --  15
#define stateLed    16   //D0 --  16


bool relayOnLevel = HIGH; // "HIGH" for active high relay, "LOW" for active low relay.
bool Protected = false;   // if "true" disables the possibility of activating the relay in manual mode.
long C_W_delay = 10000;   // ---------------------- config delay 10 seconds ---------------------------

int C_W_state = HIGH;
int last_C_W_state = HIGH;
unsigned long time_last_C_W_change = 0;
char Supla_server[81] = ("svr?.supla.org");
char Email[81] = ("your@email");
char Supla_name[51] = ("Thermostat");
char term_hist[5] = ("1.0");
char Supla_status[51] = ("No server address");
char Router_SSID[32];
char Router_Pass[64];
bool shouldSaveConfig = false;
bool initialConfig = false;
bool starting = true;
int s;
char GUID[SUPLA_GUID_SIZE];
char AUTHKEY[SUPLA_AUTHKEY_SIZE];
byte uuidNumber[16];
const char logo[] PROGMEM = "<style>html{ background-color: #01DF3A;}</style><div class='s'><svg version='1.1' id='l' x='0' y='0' viewBox='0 0 200 200' xml:space='preserve'><path d='M59.3,2.5c18.1,0.6,31.8,8,40.2,23.5c3.1,5.7,4.3,11.9,4.1,18.3c-0.1,3.6-0.7,7.1-1.9,10.6c-0.2,0.7-0.1,1.1,0.6,1.5c12.8,7.7,25.5,15.4,38.3,23c2.9,1.7,5.8,3.4,8.7,5.3c1,0.6,1.6,0.6,2.5-0.1c4.5-3.6,9.8-5.3,15.7-5.4c12.5-0.1,22.9,7.9,25.2,19c1.9,9.2-2.9,19.2-11.8,23.9c-8.4,4.5-16.9,4.5-25.5,0.2c-0.7-0.3-1-0.2-1.5,0.3c-4.8,4.9-9.7,9.8-14.5,14.6c-5.3,5.3-10.6,10.7-15.9,16c-1.8,1.8-3.6,3.7-5.4,5.4c-0.7,0.6-0.6,1,0,1.6c3.6,3.4,5.8,7.5,6.2,12.2c0.7,7.7-2.2,14-8.8,18.5c-12.3,8.6-30.3,3.5-35-10.4c-2.8-8.4,0.6-17.7,8.6-22.8c0.9-0.6,1.1-1,0.8-2c-2-6.2-4.4-12.4-6.6-18.6c-6.3-17.6-12.7-35.1-19-52.7c-0.2-0.7-0.5-1-1.4-0.9c-12.5,0.7-23.6-2.6-33-10.4c-8-6.6-12.9-15-14.2-25c-1.5-11.5,1.7-21.9,9.6-30.7C32.5,8.9,42.2,4.2,53.7,2.7c0.7-0.1,1.5-0.2,2.2-0.2C57,2.4,58.2,2.5,59.3,2.5z M76.5,81c0,0.1,0.1,0.3,0.1,0.6c1.6,6.3,3.2,12.6,4.7,18.9c4.5,17.7,8.9,35.5,13.3,53.2c0.2,0.9,0.6,1.1,1.6,0.9c5.4-1.2,10.7-0.8,15.7,1.6c0.8,0.4,1.2,0.3,1.7-0.4c11.2-12.9,22.5-25.7,33.4-38.7c0.5-0.6,0.4-1,0-1.6c-5.6-7.9-6.1-16.1-1.3-24.5c0.5-0.8,0.3-1.1-0.5-1.6c-9.1-4.7-18.1-9.3-27.2-14c-6.8-3.5-13.5-7-20.3-10.5c-0.7-0.4-1.1-0.3-1.6,0.4c-1.3,1.8-2.7,3.5-4.3,5.1c-4.2,4.2-9.1,7.4-14.7,9.7C76.9,80.3,76.4,80.3,76.5,81z M89,42.6c0.1-2.5-0.4-5.4-1.5-8.1C83,23.1,74.2,16.9,61.7,15.8c-10-0.9-18.6,2.4-25.3,9.7c-8.4,9-9.3,22.4-2.2,32.4c6.8,9.6,19.1,14.2,31.4,11.9C79.2,67.1,89,55.9,89,42.6z M102.1,188.6c0.6,0.1,1.5-0.1,2.4-0.2c9.5-1.4,15.3-10.9,11.6-19.2c-2.6-5.9-9.4-9.6-16.8-8.6c-8.3,1.2-14.1,8.9-12.4,16.6C88.2,183.9,94.4,188.6,102.1,188.6z M167.7,88.5c-1,0-2.1,0.1-3.1,0.3c-9,1.7-14.2,10.6-10.8,18.6c2.9,6.8,11.4,10.3,19,7.8c7.1-2.3,11.1-9.1,9.6-15.9C180.9,93,174.8,88.5,167.7,88.5z'/></svg>";
double ThermostatTemperature = 20.0;
double actualTemp = -127.0;
float Term_Hist = 1.0;
int TempDisp_mtbs = 5000;
unsigned long TempDisp_lasttime;
int dimm_mtbs = 15000;
unsigned long dimm_lasttime;
bool WiFiConected = false;
bool dimm = false;
bool updateOled = false;

WiFiManager wifiManager;

Supla::Control::Relay *relay_0 = nullptr;
Supla::Control::Relay *relay_2 = nullptr;
Supla::Sensor::DS18B20 *DsTemp = nullptr;
Supla::Control::RGBWBase *miDimmToTemp = nullptr;
Supla::Device::StatusLed *LedS = nullptr;

const uint8_t logo32_glcd_bmp[] PROGMEM =  //logo supla 32
{
  0x00, 0x00, 0x00, 0x00, 0xC0, 0x1F, 0x00, 0x00, 0xE0, 0x7F, 0x00, 0x00,
  0xF0, 0x70, 0x00, 0x00, 0x30, 0xE0, 0x00, 0x00, 0x38, 0xC0, 0x00, 0x00,
  0x18, 0xC0, 0x01, 0x00, 0x18, 0xC0, 0x01, 0x00, 0x38, 0xC0, 0x00, 0x00,
  0x38, 0xE0, 0x01, 0x00, 0x70, 0xF0, 0x07, 0x00, 0xE0, 0x7F, 0x0E, 0x00,
  0xC0, 0x3F, 0x38, 0x00, 0x00, 0x1F, 0xE0, 0x0F, 0x00, 0x18, 0xC0, 0x1F,
  0x00, 0x18, 0xC0, 0x30, 0x00, 0x18, 0xC0, 0x30, 0x00, 0x30, 0xC0, 0x30,
  0x00, 0x30, 0x80, 0x1F, 0x00, 0x30, 0xC0, 0x0F, 0x00, 0x20, 0x60, 0x00,
  0x00, 0x60, 0x20, 0x00, 0x00, 0x60, 0x30, 0x00, 0x00, 0x40, 0x18, 0x00,
  0x00, 0xC0, 0x0D, 0x00, 0x00, 0xC0, 0x07, 0x00, 0x00, 0x60, 0x04, 0x00,
  0x00, 0x20, 0x0C, 0x00, 0x00, 0x20, 0x0C, 0x00, 0x00, 0x60, 0x06, 0x00,
  0x00, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00
};
const uint8_t logo16_wifi_bmp[] PROGMEM =  //logo wifi 16
{
  0x00, 0x00, 0x00, 0x00, 0xE0, 0x07, 0x38, 0x1C, 0xC4, 0x23, 0x72, 0x4E,
  0x08, 0x10, 0xE4, 0x27, 0x10, 0x0C, 0x90, 0x09, 0x40, 0x02, 0x60, 0x06,
  0x40, 0x02, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00
};
const uint8_t logo16_wifi_off_bmp[] PROGMEM =  //logo wifi off 16
{
  0x01, 0x80, 0x02, 0x40, 0xE4, 0x27, 0x38, 0x1C, 0xD4, 0x6B, 0x73, 0xCE,
  0xD9, 0x93, 0xE4, 0x27, 0xB0, 0x0D, 0xD8, 0x1B, 0x60, 0x06, 0x70, 0x0E,
  0x48, 0x12, 0x84, 0x21, 0x02, 0x40, 0x01, 0x80
};
const uint8_t logo16_supla_bmp[] PROGMEM =  //logo supla 16
{
  0x30, 0x00, 0x7C, 0x00, 0xC4, 0x00, 0x86, 0x00, 0x84, 0x00, 0xDC, 0x03,
  0x78, 0x36, 0x60, 0x78, 0x40, 0x48, 0x40, 0x38, 0x40, 0x04, 0x80, 0x06,
  0x80, 0x03, 0x40, 0x02, 0xC0, 0x03, 0x00, 0x01
};

const uint8_t logo_Power_off[] PROGMEM =  //Power off
{
  0xe0, 0xff, 0xff, 0xff, 0x03, 0x38, 0xfc, 0xff, 0xff, 0x0f, 0x0c, 0xf0,
  0xff, 0xff, 0x3f, 0x06, 0xe0, 0xff, 0xff, 0x3f, 0x02, 0xc0, 0xcf, 0x43,
  0x78, 0x03, 0xc0, 0x33, 0x43, 0x78, 0x01, 0xc0, 0x7b, 0x7b, 0xff, 0x01,
  0x80, 0xfd, 0x42, 0xf8, 0x01, 0x80, 0xfd, 0x42, 0xf8, 0x01, 0x80, 0x7b,
  0x7b, 0xff, 0x03, 0xc0, 0x33, 0x7b, 0xff, 0x02, 0xc0, 0xcf, 0x7b, 0x7f,
  0x06, 0xe0, 0xff, 0xff, 0x7f, 0x0c, 0xf0, 0xff, 0xff, 0x3f, 0x18, 0xfc,
  0xff, 0xff, 0x1f, 0xf0, 0xff, 0xff, 0xff, 0x07,
};
const uint8_t logo_Power_on[] PROGMEM =  //Power on
{
  0xe0, 0xff, 0xff, 0xff, 0x07, 0x38, 0x00, 0x00, 0x30, 0x0c, 0x0c, 0x00,
  0x00, 0x18, 0x18, 0x06, 0x00, 0x00, 0x0c, 0x30, 0x02, 0x0e, 0x00, 0x06,
  0x60, 0x03, 0x9f, 0x19, 0x02, 0x40, 0x81, 0xb1, 0x1b, 0x03, 0xc0, 0x81,
  0xa0, 0x1a, 0x01, 0x80, 0x81, 0xa0, 0x1e, 0x01, 0x80, 0x81, 0xb1, 0x1c,
  0x01, 0xc0, 0x03, 0x9b, 0x18, 0x03, 0x40, 0x02, 0x8e, 0x18, 0x02, 0x60,
  0x06, 0x00, 0x00, 0x06, 0x20, 0x0c, 0x00, 0x00, 0x0c, 0x38, 0x38, 0x00,
  0x00, 0x18, 0x0c, 0xe0, 0xff, 0xff, 0xff, 0x07,
};
const uint8_t hand16_bmp[] PROGMEM =  //logo hand 16
{
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x03, 0x30, 0x02, 0x08, 0x3F,
  0x04, 0x40, 0x04, 0x7C, 0x02, 0x40, 0x02, 0x7C, 0x02, 0x60, 0x04, 0x3C,
  0x18, 0x10, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00
};
const uint8_t logo16_2_on[] PROGMEM =  //logo 2 on 16
{
  0x00, 0x00, 0xE0, 0x07, 0xE0, 0x07, 0x18, 0x18, 0x00, 0x18, 0x00, 0x18,
  0x00, 0x18, 0x00, 0x06, 0x00, 0x06, 0x80, 0x01, 0x60, 0x00, 0x60, 0x00,
  0x18, 0x00, 0xF8, 0x1F, 0xF8, 0x1F, 0x00, 0x00
};
const uint8_t logo16_2_off[] PROGMEM =  //logo 2 off 16
{
  0x01, 0x80, 0xE2, 0x47, 0xE4, 0x27, 0x18, 0x18, 0x10, 0x18, 0x20, 0x1C,
  0x40, 0x1A, 0x80, 0x07, 0x80, 0x07, 0xC0, 0x03, 0x60, 0x04, 0x70, 0x08,
  0x18, 0x10, 0xFC, 0x3F, 0xFA, 0x5F, 0x01, 0x80
};

class ManualRelay : public Supla::Control::Relay {
  public:
    ManualRelay() : Relay(-1, true, 32) {}
    void onInit() {
      digitalWrite(relay_pin, !relayOnLevel);
      pinMode(relay_pin, OUTPUT);
    }
    void turnOn(_supla_int_t duration) {
      if (!relay_0->isOn() && Protected) {
        digitalWrite(relay_pin, !relayOnLevel);
        channel.setNewValue(false);
        Serial.println("*** Protected!! relay will not be activated in manual mode ***");
      } else {
        digitalWrite(relay_pin, relayOnLevel);
        channel.setNewValue(true);
        Serial.println("*** relay On ***");
      }
    }
    void turnOff(_supla_int_t duration) {
      digitalWrite(relay_pin, !relayOnLevel);
      channel.setNewValue(false);
      Serial.println("*** relay Off ***");
    }
    bool isOn() {
      if (relayOnLevel) {
        return digitalRead(relay_pin);
      } else {
        return !digitalRead(relay_pin);
      }
    }
}; ManualRelay *relay_1 = nullptr;
class TermostatTemp : public Supla::Sensor::Thermometer {
  public:
    TermostatTemp() {}

    void onInit() {
      channel.setNewValue(getValue() );
    }
    double getValue() {
      return ThermostatTemperature;
    }
    void iterateAlways() {
      channel.setNewValue(getValue() );
      if ( millis() - lastReadTime > 2500) {
        lastReadTime = millis();
        actualTemp = DsTemp->getValue();
        if (relay_0->isOn()) {
          if (((relay_1->isOn()) && ( actualTemp >= ThermostatTemperature)) || ( actualTemp < -100.0)) {
            relay_1->turnOff(0);
          } else if ((!relay_1->isOn()) && ( actualTemp <= (ThermostatTemperature - Term_Hist))) {
            relay_1->turnOn(0);
          }
        }
      }
    }
}; TermostatTemp *TerTemp = nullptr;

class TermostatSet : public Supla::Control::Relay {
  public:
    TermostatSet() : Relay(-1, true, 32) {}

    void onInit() {
      // do nothing here
    }
    void turnOn(_supla_int_t duration) {
      ThermostatTemperature += 1.0;
      if (ThermostatTemperature > 100.0) ThermostatTemperature = 100.0;
      channel.setNewValue(false);
      miDimmToTemp->setRGBW(-1, -1, -1, -1, (ThermostatTemperature));
      updateOled = true;
    }
    void turnOff(_supla_int_t duration) {
      ThermostatTemperature -= 1.0;
      if (ThermostatTemperature < 0.0) ThermostatTemperature = 0.0;
      channel.setNewValue(false);
      miDimmToTemp->setRGBW(-1, -1, -1, -1, (ThermostatTemperature));
      updateOled = true;
    }
    bool isOn() {
      return false;
    }
}; TermostatSet *TerSet = nullptr;

enum addedActions {unDimm};
class addedActionsClass : public Supla::ActionHandler {
  public: addedActionsClass() {};
    void handleAction(int event, int action) {
      if (action == unDimm) {
        if (dimm) {
          dimm = false ;
          dimm_lasttime = millis();
          display.setContrast(200, 241, 64);
        } else {
          dimm_lasttime = millis();
        }
      }
    }
};
addedActionsClass *custAct = new addedActionsClass;

class DimmToTemp : public Supla::Control::DimmerBase {
  public:
    DimmToTemp() { }

    void setRGBWValueOnDevice(uint32_t red,
                              uint32_t green,
                              uint32_t blue,
                              uint32_t colorBrightness,
                              uint32_t brightness) {
      float dimmTemp = map(brightness, 0, 1023, 0, 100);
      ThermostatTemperature = dimmTemp;
    }
};

void saveConfigCallback () {
  Serial.println("Should save config");
  shouldSaveConfig = true;
}
void ondemandwifiCallback () {

  // Enables custom LED sequence based on given durations.
  // Automatic sequence change will be disabled.
  // (1000, 0) = LED ON.
  LedS->setCustomSequence(1000, 0); // void setCustomSequence(int onDurationMs, int offDurationMs);

  display.clear();
  display.setContrast(200, 241, 64);
  display.setTextAlignment(TEXT_ALIGN_CENTER);
  display.setFont(ArialMT_Plain_10);
  display.drawString(64, 16, "wifi config connect");
  display.drawString(64, 28, "to wifi hotspot");
  display.setFont(ArialMT_Plain_16);
  display.drawString(64, 44, "Thermostat");
  display.display();

  wifi.setSsid("");
  wifi.setPassword("");
  wifiManager.setConfigPortalBlocking(true);
  wifiManager.setCleanConnect(true);
  wifiManager.setBreakAfterConfig(true);
  wifiManager.setSaveConfigCallback(saveConfigCallback);
  wifiManager.setCustomHeadElement(logo);
  wifiManager.setMinimumSignalQuality(8);
  wifiManager.setConfigPortalTimeout(300);
  std::vector<const char *> menu = {"wifi", "wifinoscan", "sep", "update", "sep", "info", "restart"};
  wifiManager.setMenu(menu);
  wifiManager.setTitle("&#66&#121&#46&#46&#69&#108&#77&#97&#121&#97");

  WiFiManagerParameter custom_Supla_server("server", "supla server", Supla_server, 81, "required");
  WiFiManagerParameter custom_Email("email", "Email", Email, 81, "required");
  WiFiManagerParameter custom_Supla_name("name", "Supla Device Name", Supla_name, 51, "required");
  WiFiManagerParameter custom_term_hist("histerisis", "Histerisis", term_hist, 5, "required");
  WiFiManagerParameter custom_html_id21("<div><h4> - Supla State -   ");
  WiFiManagerParameter custom_html_id22(Supla_status);
  WiFiManagerParameter custom_html_id23("</h4></div>");

  wifiManager.addParameter(&custom_Supla_server);
  wifiManager.addParameter(&custom_Email);
  wifiManager.addParameter(&custom_Supla_name);
  wifiManager.addParameter(&custom_term_hist);
  wifiManager.addParameter(&custom_html_id21);
  wifiManager.addParameter(&custom_html_id22);
  wifiManager.addParameter(&custom_html_id23);

  if (!wifiManager.startConfigPortal("Thermostat")) {
    Serial.println("Not connected to WiFi but continuing anyway.");
  } else {
    Serial.println("connected...yeey :)");
  }
  strcpy(Supla_server, custom_Supla_server.getValue());
  strcpy(Email, custom_Email.getValue());
  strcpy(Supla_name, custom_Supla_name.getValue());
  strcpy(term_hist, custom_term_hist.getValue());
  wifiManager.getWiFiSSID().toCharArray(Router_SSID, 33);
  wifiManager.getWiFiPass().toCharArray(Router_Pass, 65);
  if (strcmp(Supla_server, "get_new_guid_and_authkey") == 0) {
    Serial.println("new guid & authkey.");
    EEPROM.write(300, 0);
    EEPROM.commit();
    delay(100);
    ESP.reset();
  }
  if (shouldSaveConfig) {
    DynamicJsonDocument json(1024);
    json["Supla_server"] = Supla_server;
    json["Email"] = Email;
    json["Supla_name"] = Supla_name;
    json["term_hist"] = term_hist;
    json["Router_SSID"] = Router_SSID;
    json["Router_Pass"] = Router_Pass;
    File configFile = LittleFS.open("/config.json", "w");
    if (!configFile) {
      Serial.println("failed to open config file for writing");
    }
    serializeJsonPretty(json, Serial);
    serializeJson(json, configFile);
    configFile.close();
    shouldSaveConfig = false;
    initialConfig = false;
    WiFi.mode(WIFI_STA);
    delay(5000);
    ESP.restart();
  }
  WiFi.softAPdisconnect(true);
  if (initialConfig == true) {
    shouldSaveConfig = false;
    initialConfig = false;
    WiFi.mode(WIFI_STA);
    delay(5000);
    ESP.restart();
  }
  LedS->setAutoSequence(); // Restores automatic LED sequence change based on device state.
}
void status_func(int status, const char *msg) {    //    ------------------------ Status --------------------------
  if (s != status) {
    s = status;
    if (s != 10) {
      strcpy(Supla_status, msg);
    }
  }
}

void TH_Overlay() {

  display.clear();
  if (actualTemp > -100) {
    display.setFont(Arimo_Bold_32);
    //display.setFont(ArialMT_Plain_24);
    display.setTextAlignment(TEXT_ALIGN_CENTER);
    display.drawString(64, 14, String(actualTemp, 1) + "ºC");
  } else {
    display.setFont(Arimo_Bold_32);
    //display.setFont(ArialMT_Plain_24);
    display.setTextAlignment(TEXT_ALIGN_CENTER);
    display.drawString(64, 14, "-----");
  }

  display.setFont(ArialMT_Plain_16);
  display.setTextAlignment(TEXT_ALIGN_CENTER);
  display.drawString(64, 48, "Preset " + String(ThermostatTemperature, 1) + "ºC");

  if (relay_0->isOn()) {
    display.drawString(61, 0, "Auto");
  } else {
    display.drawXbm(52, 0, 16, 16, hand16_bmp);
  }
  if (!WiFiConected) {
    display.drawXbm(22, 0, 16, 16, logo16_wifi_off_bmp);// -------------------------------------------------- oled no wifi --------
  } else {
    if (s == STATUS_REGISTERED_AND_READY) {
      display.drawXbm(22, 0, 16, 16, logo16_supla_bmp);// ------------------------------------------------ oled supla ok --------
    } else if (s != 10) {
      display.setFont(ArialMT_Plain_16);
      display.drawString(30, 0, String(s));
    }
  }
  if (relay_1->isOn()) {
    display.drawXbm(86, 0, 40, 16, logo_Power_on);// -------------------------------------------------- Relay on  ---------
  } else {
    display.drawXbm(86, 0, 40, 16, logo_Power_off);// ------------------------------------------------- Relay off  --------
  }
  if (relay_2->isOn()) {
    display.drawXbm(1, 0, 16, 16, logo16_2_on);// -------------------------------------------------- Relay 2 on  ---------
  } else {
    display.drawXbm(1, 0, 16, 16, logo16_2_off);// ------------------------------------------------- Relay 2 off  --------
  }
  display.display();
  TempDisp_lasttime = millis();
}

void guid_authkey(void) {
  if (EEPROM.read(300) != 60) {
    int eep_gui = 301;
    ESP8266TrueRandom.uuid(uuidNumber);
    String uuidString = "";
    for (int i = 0; i < 16; i++) {
      int topDigit = uuidNumber[i] >> 4;
      int bottomDigit = uuidNumber[i] & 0x0f;
      uuidString += "0123456789abcdef"[topDigit];
      uuidString += "0123456789abcdef"[bottomDigit];
    }
    int length_uuid = uuidString.length();
    for (int i = 0; i < length_uuid; ++i) {
      EEPROM.put(eep_gui + i, uuidString[i]);
    }
    int eep_aut = 341;
    ESP8266TrueRandom.uuid(uuidNumber);
    String uuidString2 = "";
    for (int i = 0; i < 16; i++) {
      int topDigit = uuidNumber[i] >> 4;
      int bottomDigit = uuidNumber[i] & 0x0f;
      uuidString2 += "0123456789abcdef"[topDigit];
      uuidString2 += "0123456789abcdef"[bottomDigit];
    }
    int length_uuid2 = uuidString2.length();
    for (int i = 0; i < length_uuid2; ++i) {
      EEPROM.put(eep_aut + i, uuidString2[i]);
    }
    EEPROM.write(300, 60);
    EEPROM.commit();
    delay(0);
  }
  read_guid();
  read_authkey();
  //Serial.print("GUID : ");Serial.println(read_guid());
  //Serial.print("AUTHKEY : ");Serial.println(read_authkey());
}
String read_guid(void) {
  String read_eeprom = "";
  int i, ii = 0;
  int eep_star = 301;
  int end_guid = eep_star + SUPLA_GUID_SIZE;
  String temp_read = "0x";
  for (i = eep_star; i < end_guid + 16;  i = i + 1) {
    temp_read += char(EEPROM.read(i));
    read_eeprom += char(EEPROM.read(i));
    if ( (i % 2) == 0) {
      char *_guid = strcpy((char*)malloc(temp_read.length() + 1), temp_read.c_str());
      GUID[ii] = strtoul( _guid, NULL, 16);
      temp_read = "0x";
      ii++;
    }
  }
  return read_eeprom;
}
String read_authkey(void) {
  String read_eeprom = "";
  int i, ii = 0;
  int eep_star = 341;
  int end_authkey = eep_star + SUPLA_AUTHKEY_SIZE;
  String temp_read = "0x";
  for (i = eep_star; i < end_authkey + 16;  i = i + 1) {
    temp_read += char(EEPROM.read(i));
    read_eeprom += char(EEPROM.read(i));
    if ( (i % 2) == 0) {
      char *_authkey = strcpy((char*)malloc(temp_read.length() + 1), temp_read.c_str());
      AUTHKEY[ii] = strtoul( _authkey, NULL, 16);
      temp_read = "0x";
      ii++;
    }
  }
  return read_eeprom;
}

void setup() {
  wifi_set_sleep_type(NONE_SLEEP_T);
  pinMode(button_pin, INPUT_PULLUP);
  Serial.begin(115200, SERIAL_8N1, SERIAL_TX_ONLY, 1);
  display.init();
  display.flipScreenVertically();
  display.clear();
  display.setFont(ArialMT_Plain_24);
  display.drawString(42, 6, "Supla");
  display.setFont(ArialMT_Plain_16);
  display.drawString(33, 40, "Thermostat");
  display.drawXbm(0, 16, 32, 32, logo32_glcd_bmp );
  display.display();
  delay(10);
  EEPROM.begin(1024);
  if (EEPROM.read(300) != 60) {
    initialConfig = true;
  }
  guid_authkey();

  if (LittleFS.begin()) {  // ------------------------- wificonfig read -----------------
    if (LittleFS.exists("/config.json")) {
      File configFile = LittleFS.open("/config.json", "r");
      if (configFile) {
        DynamicJsonDocument json(1024);
        DeserializationError deserializeError = deserializeJson(json, configFile);
        serializeJsonPretty(json, Serial);
        if (!deserializeError) {
          Serial.println("\nparsed json");
          if (json.containsKey("Supla_server")) strcpy(Supla_server, json["Supla_server"]);
          if (json.containsKey("Email")) strcpy(Email, json["Email"]);
          if (json.containsKey("Supla_name")) strcpy(Supla_name, json["Supla_name"]);
          if (json.containsKey("term_hist")) {
            strcpy(term_hist, json["term_hist"]);
            Term_Hist = (String(term_hist).toFloat());
            if (Term_Hist < 0.1) {
              Term_Hist = 0.1;
            }
            else if (Term_Hist > 10.0) {
              Term_Hist = 10.0;
            }
          }
          if (json.containsKey("Router_SSID")) strcpy(Router_SSID, json["Router_SSID"]);
          if (json.containsKey("Router_Pass")) strcpy(Router_Pass, json["Router_Pass"]);
        } else {
          initialConfig = true;
        }
        configFile.close();
      }
    }
  } else {
    Serial.println("failed to mount FS");
  }

  wifi_station_set_hostname(Supla_name);
  WiFi.mode(WIFI_STA);
  if (initialConfig) {
    ondemandwifiCallback();
  }

  relay_0 = new Supla::Control::Relay(autoManLed, true, 32);
  relay_0->getChannel()->setDefault(SUPLA_CHANNELFNC_POWERSWITCH);
  relay_0->setDefaultStateRestore();
  relay_0->disableChannelState();
  relay_1 = new ManualRelay();
  relay_1->getChannel()->setDefault(SUPLA_CHANNELFNC_POWERSWITCH);
  relay_1->setDefaultStateOff();
  relay_1->disableChannelState();
  DsTemp = new Supla::Sensor::DS18B20(ds_pin);
  TerTemp = new TermostatTemp();
  TerTemp->disableChannelState();
  TerSet = new TermostatSet();
  TerSet->getChannel()->setDefault(SUPLA_CHANNELFNC_POWERSWITCH);
  TerSet->disableChannelState();
  
  relay_0->addAction(Supla::TURN_OFF, relay_1, Supla::ON_TURN_OFF);
  miDimmToTemp = new DimmToTemp();
  miDimmToTemp->disableChannelState();
  auto button_2 = new Supla::Control::Button(button2_pin, true, true);
  auto button_3 = new Supla::Control::Button(button3_pin, true, true);
  button_2->setHoldTime(500);
  button_3->setHoldTime(500);
  button_2->repeatOnHoldEvery(200);  
  button_3->repeatOnHoldEvery(200);
  button_2->addAction(unDimm, custAct, Supla::ON_PRESS);
  button_3->addAction(unDimm, custAct, Supla::ON_PRESS);
  button_2->addAction(Supla::TURN_ON, TerSet, Supla::ON_PRESS);
  button_3->addAction(Supla::TURN_OFF, TerSet, Supla::ON_PRESS);
  button_2->addAction(Supla::TURN_ON, TerSet, Supla::ON_HOLD);
  button_3->addAction(Supla::TURN_OFF, TerSet, Supla::ON_HOLD);
  relay_2 = new Supla::Control::Relay(relay2_pin, true, 224);
  relay_2->getChannel()->setDefault(SUPLA_CHANNELFNC_LIGHTSWITCH);
  relay_2->disableChannelState();
  relay_2->setDefaultStateRestore();
  relay_2->keepTurnOnDuration();  
  auto button_1 = new Supla::Control::Button(button_pin, true, true);
  button_1->setMulticlickTime(800, false);
  button_1->setHoldTime(1000); 
  button_1->addAction(Supla::TOGGLE, relay_0, Supla::ON_CLICK_1);
  if (!Protected)button_1->addAction(Supla::TOGGLE, relay_1, Supla::ON_CLICK_2);
  button_1->addAction(unDimm, custAct, Supla::ON_PRESS);
  button_1->addAction(Supla::TOGGLE, relay_2, Supla::ON_HOLD);

  LedS = new Supla::Device::StatusLed(stateLed, true);
  // StatusLed(uint8_t outPin, bool invert)
  // Use inverted logic for GPIO output, when:
  // false -> HIGH=ON,  LOW=OFF
  // true  -> HIGH=OFF, LOW=ON
  LedS->setMode(Supla::LED_OFF_WHEN_CONNECTED);
  // LED_ON_WHEN_CONNECTED /* default ,
  // LED_OFF_WHEN_CONNECTED,
  // LED_ALWAYS_OFF

  SuplaDevice.setName(Supla_name);
  wifi.setSsid(Router_SSID);
  wifi.setPassword(Router_Pass);
  SuplaDevice.setStatusFuncImpl(&status_func);
  wifi.enableSSL(false);
  SuplaDevice.begin(GUID, Supla_server, Email, AUTHKEY);

}

void loop() {

  int C_W_read = digitalRead(button_pin); {
    if (C_W_read != last_C_W_state) {
      time_last_C_W_change = millis();
    }
    if ((millis() - time_last_C_W_change) > C_W_delay) {
      if (C_W_read != C_W_state) {
        C_W_state = C_W_read;
        if (C_W_state == LOW) {
          ondemandwifiCallback () ;
        }
      }
    }
    last_C_W_state = C_W_read;
  }

  SuplaDevice.iterate();
  delay(20);

  if (((millis() -  TempDisp_lasttime) > TempDisp_mtbs) || (updateOled))  {
    WiFiConected = (WiFi.status() == WL_CONNECTED);
    TempDisp_mtbs = 500;
    if (updateOled){
      dimm_lasttime = millis();
      updateOled = false;
    }
    TH_Overlay();
  }
  if ((millis() - dimm_lasttime) > dimm_mtbs) {
    if (!dimm) {
      display.setContrast(50, 50, 30);
      display.display();
      dimm = true ;
    }
    dimm_lasttime = millis();
  }
}
eradek
Posts: 81
Joined: Sun Sep 09, 2018 5:32 pm

Sweet, thanks a lot!
endrju761@gmail.com
Posts: 2
Joined: Wed Aug 14, 2019 8:48 am

Wgrałem termostat z rotary enkoderem.
Po boocie nie rozgłasza sieci , d5 10s jest termostat.
Potem:

Code: Select all

Creating OneWire bus for pin: 4
Initializing OneWire bus at pin 4
OneWire(pin 4) Parasite power is OFF
OneWire(pin 4) Found 0 devices:
Device address not provided. Using device from index 0
Supla - starting initialization
Storage initialization
readStorage: 8; Read: [53 55 50 4C 41 1 0 1 ]
Storage: Number of sections 1
Reading section: 0
readStorage: 7; Read: [3 F 0 0 0 0 0 ]
Section type: 3; size: 15
Validating storage state section with current device configuration
Storage state section validation completed. Loading elements state...
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Relay[0]: restored relay state: OFF
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Channel(2) value changed to -275.0
Channel(3) value changed to 20.0
Initializing network layer
WiFi: establishing connection with SSID: ""
Using Supla protocol version 16
Current status: [5] SuplaDevice initialized
Current status: [8] No connection to network
Connection fail counter overflow. Trying to setup network interface again
WiFi: resetting WiFi connection
Connection fail counter overflow. Trying to setup network interface again
WiFi: resetting WiFi connection
*wm:[2] Added Parameter: server
*wm:[2] Added Parameter: email
*wm:[2] Added Parameter: name
*wm:[2] Added Parameter: step
*wm:[2] Added Parameter: histerisis
*wm:[2] Added Parameter:
*wm:[2] Added Parameter:
*wm:[2] Added Parameter:
*wm:[2] Starting Config Portal 
*wm:[2] Disabling STA 
*wm:[2] Enabling AP 
*wm:[1] StartAP with SSID:  Thermostat
*wm:[2] AP has anonymous access! 
*wm:[1] AP IP address: 192.168.4.1
*wm:[1] Starting Web Portal 
*wm:[2] HTTP server started 
*wm:[2] Config Portal Running, blocking, waiting for clients... 
*wm:[2] Portal Timeout In 300 seconds
*wm:[2] Portal Timeout In 298 seconds
*wm:[2] <- Request redirected to captive portal 
*wm:[2] <- Request redirected to captive portal 
*wm:[2] <- Request redirected to captive portal 
*wm:[2] <- HTTP Root 

--------------- CUT HERE FOR EXCEPTION DECODER ---------------

Exception (3):
epc1=0x4000bf64 epc2=0x00000000 epc3=0x00000000 excvaddr=0x402701c9 depc=0x00000000

>>>stack>>>

ctx: cont
sp: 3ffffa90 end: 3fffffc0 offset: 0190
3ffffc20:  3fff55e4 00000cc0 00000000 00000000  
3ffffc30:  402701c9 0000002b 3ffffc80 00000000  
3ffffc40:  00000000 3ffefa70 3ffffcbc 4020afaf  
3ffffc50:  00000000 3fff3194 3ffffc80 4021e568  
3ffffc60:  3ffffc80 3ffefba8 3ffefa70 4021e591  
3ffffc70:  3ffefb70 3ffefba8 3ffefa70 402118b6  
3ffffc80:  3fff4fcc 002b002f 80000000 4020fb9c  
3ffffc90:  00000000 69746365 00000000 40235e8f  
3ffffca0:  40212a00 3ffefa70 00007530 00000000  
3ffffcb0:  3fff1c64 3fff3358 00000000 3fff55e4  
3ffffcc0:  0cc00ccf 80000000 0000197b 00000000  
3ffffcd0:  3ffefb70 00000001 3fff3304 40222448  
3ffffce0:  00000721 00000000 00000000 401000e9  
3ffffcf0:  00000000 00000000 3fff5034 4020d2c1  
3ffffd00:  00000000 3fff1c64 3fff1c1c 402102fc  
3ffffd10:  00000000 00000000 00000000 69746365  
3ffffd20:  00000000 00000000 4010051d 00000000  
3ffffd30:  0002b477 00000000 00000000 00000001  
3ffffd40:  00000000 00000000 3fff1c1c 00000000  
3ffffd50:  3ffefb70 3fff1c40 3fff1c1c 4021249a  
3ffffd60:  40223f30 00000000 00001388 40216d77  
3ffffd70:  00000000 00000000 3fff4d2c 00000000  
3ffffd80:  3ffefb70 3ffefb70 3ffefa70 402126d4  
3ffffd90:  3ffefb70 00000001 3ffefa70 4020cca3  
3ffffda0:  00000000 00000000 00000001 401001a8  
3ffffdb0:  000b000f 00000000 3ffefa70 00000000  
3ffffdc0:  3ffefb70 00000001 3ffefa70 00000000  
3ffffdd0:  3ffefb70 00000001 3ffefa70 40212a00  
3ffffde0:  00000000 000b000f 00000000 00000000  
3ffffdf0:  73646e6f 00000000 00000000 000b000f  
3ffffe00:  00000000 00000000 3ffefa70 4020c47c  
3ffffe10:  3ffe8c11 3ffe861b 3ffffed8 4020aeb2  
3ffffe20:  3ffefd0c 3ffe8c48 3ffefa70 3ffe861b  
3ffffe30:  3ffe86a9 3ffe8c48 3ffefa70 402084e1  
3ffffe40:  00000000 002b002f 00000000 3ffe8974  
3ffffe50:  3ffe8970 3ffe897b 3ffe8980 00000030  
3ffffe60:  00000000 00000000 00000001 401001a8  
3ffffe70:  40100578 00000010 3fff2f80 000003f0  
3ffffe80:  0000001f 3ffefd14 00000000 4021a724  
3ffffe90:  00000000 00000000 00000000 00000001  
3ffffea0:  00000001 3ffe8cb7 00000000 00000000  
3ffffeb0:  00000000 00000001 00000001 3ffe85e8  
3ffffec0:  00000000 00000000 00000000 00000001  
3ffffed0:  00000001 3ffe8c9a 3ffe8c8f 3ffe8c84  
3ffffee0:  3fff327c 00000005 00000001 3ffe8c48  
3ffffef0:  3ffe8c7f 3ffe8c76 3fff1ea4 00000005  
3fffff00:  00000001 3ffe8c48 3ffe8d44 3ffe8c64  
3fffff10:  3fff315c 00000033 00000001 3ffe8c48  
3fffff20:  3ffe98df 3ffe8c5e 3fff3224 00000051  
3fffff30:  00000001 3ffe8c48 3ffe9717 3ffe8c51  
3fffff40:  3fff31cc 00000051 00000001 3ffe8c48  
3fffff50:  3fff313c 3fff3158 3fff3158 00000000  
3fffff60:  00f42400 83bfeac8 4010051d 00000000  
3fffff70:  00000000 3ffe8c11 0000000a 4021f65c  
3fffff80:  00000000 00000000 00000001 3fff10c4  
3fffff90:  3ffefd0c 3ffe86fc 00000000 4020881d  
3fffffa0:  3fffdad0 00000000 3fff10b0 4021f77c  
3fffffb0:  feefeffe feefeffe 3ffe873c 40100f79  
<<<stack<<<

--------------- CUT HERE FOR EXCEPTION DECODER ---------------

 ets Jan  8 2013,rst cause:2, boot mode:(3,6)

load 0x4010f000, len 3460, room 16 
tail 4
chksum 0xcc
load 0x3fff20b8, len 40, room 4 
tail 4
chksum 0xc9
csum 0xc9
v0008d530
~ld
⸮⸮Term_Step: 0.50
Term_Hist: 1.00
Creating OneWire bus for pin: 4
Initializing OneWire bus at pin 4
OneWire(pin 4) Parasite power is OFF
OneWire(pin 4) Found 0 devices:
Device address not provided. Using device from index 0
Supla - starting initialization
Storage initialization
readStorage: 8; Read: [53 55 50 4C 41 1 0 1 ]
Storage: Number of sections 1
Reading section: 0
readStorage: 7; Read: [3 F 0 0 0 0 0 ]
Section type: 3; size: 15
Validating storage state section with current device configuration
Storage state section validation completed. Loading elements state...
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Relay[0]: restored relay state: OFF
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Channel(2) value changed to -275.0
Channel(3) value changed to 20.0
Initializing network layer
WiFi: establishing connection with SSID: ""
Using Supla protocol version 16
Current status: [5] SuplaDevice initialized
Current status: [8] No connection to network
wgrane do nodemcu
elmaya
Posts: 1482
Joined: Wed Jun 27, 2018 5:48 pm
Location: El Saucejo - Sevilla

endrju761@gmail.com wrote: Wed Apr 13, 2022 8:57 pm I have uploaded a thermostat with a rotary encoder.
After the boocie, it does not broadcast the network, d5 10s is the thermostat.
Later:

Code: Select all

Creating OneWire bus for pin: 4
Initializing OneWire bus at pin 4
OneWire(pin 4) Parasite power is OFF
OneWire(pin 4) Found 0 devices:
Device address not provided. Using device from index 0
Supla - starting initialization
Storage initialization
readStorage: 8; Read: [53 55 50 4C 41 1 0 1 ]
Storage: Number of sections 1
Reading section: 0
readStorage: 7; Read: [3 F 0 0 0 0 0 ]
Section type: 3; size: 15
Validating storage state section with current device configuration
Storage state section validation completed. Loading elements state...
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Relay[0]: restored relay state: OFF
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Channel(2) value changed to -275.0
Channel(3) value changed to 20.0
Initializing network layer
WiFi: establishing connection with SSID: ""
Using Supla protocol version 16
Current status: [5] SuplaDevice initialized
Current status: [8] No connection to network
Connection fail counter overflow. Trying to setup network interface again
WiFi: resetting WiFi connection
Connection fail counter overflow. Trying to setup network interface again
WiFi: resetting WiFi connection
*wm:[2] Added Parameter: server
*wm:[2] Added Parameter: email
*wm:[2] Added Parameter: name
*wm:[2] Added Parameter: step
*wm:[2] Added Parameter: histerisis
*wm:[2] Added Parameter:
*wm:[2] Added Parameter:
*wm:[2] Added Parameter:
*wm:[2] Starting Config Portal 
*wm:[2] Disabling STA 
*wm:[2] Enabling AP 
*wm:[1] StartAP with SSID:  Thermostat
*wm:[2] AP has anonymous access! 
*wm:[1] AP IP address: 192.168.4.1
*wm:[1] Starting Web Portal 
*wm:[2] HTTP server started 
*wm:[2] Config Portal Running, blocking, waiting for clients... 
*wm:[2] Portal Timeout In 300 seconds
*wm:[2] Portal Timeout In 298 seconds
*wm:[2] <- Request redirected to captive portal 
*wm:[2] <- Request redirected to captive portal 
*wm:[2] <- Request redirected to captive portal 
*wm:[2] <- HTTP Root 

--------------- CUT HERE FOR EXCEPTION DECODER ---------------

Exception (3):
epc1=0x4000bf64 epc2=0x00000000 epc3=0x00000000 excvaddr=0x402701c9 depc=0x00000000

>>>stack>>>

ctx: cont
sp: 3ffffa90 end: 3fffffc0 offset: 0190
3ffffc20:  3fff55e4 00000cc0 00000000 00000000  
3ffffc30:  402701c9 0000002b 3ffffc80 00000000  
3ffffc40:  00000000 3ffefa70 3ffffcbc 4020afaf  
3ffffc50:  00000000 3fff3194 3ffffc80 4021e568  
3ffffc60:  3ffffc80 3ffefba8 3ffefa70 4021e591  
3ffffc70:  3ffefb70 3ffefba8 3ffefa70 402118b6  
3ffffc80:  3fff4fcc 002b002f 80000000 4020fb9c  
3ffffc90:  00000000 69746365 00000000 40235e8f  
3ffffca0:  40212a00 3ffefa70 00007530 00000000  
3ffffcb0:  3fff1c64 3fff3358 00000000 3fff55e4  
3ffffcc0:  0cc00ccf 80000000 0000197b 00000000  
3ffffcd0:  3ffefb70 00000001 3fff3304 40222448  
3ffffce0:  00000721 00000000 00000000 401000e9  
3ffffcf0:  00000000 00000000 3fff5034 4020d2c1  
3ffffd00:  00000000 3fff1c64 3fff1c1c 402102fc  
3ffffd10:  00000000 00000000 00000000 69746365  
3ffffd20:  00000000 00000000 4010051d 00000000  
3ffffd30:  0002b477 00000000 00000000 00000001  
3ffffd40:  00000000 00000000 3fff1c1c 00000000  
3ffffd50:  3ffefb70 3fff1c40 3fff1c1c 4021249a  
3ffffd60:  40223f30 00000000 00001388 40216d77  
3ffffd70:  00000000 00000000 3fff4d2c 00000000  
3ffffd80:  3ffefb70 3ffefb70 3ffefa70 402126d4  
3ffffd90:  3ffefb70 00000001 3ffefa70 4020cca3  
3ffffda0:  00000000 00000000 00000001 401001a8  
3ffffdb0:  000b000f 00000000 3ffefa70 00000000  
3ffffdc0:  3ffefb70 00000001 3ffefa70 00000000  
3ffffdd0:  3ffefb70 00000001 3ffefa70 40212a00  
3ffffde0:  00000000 000b000f 00000000 00000000  
3ffffdf0:  73646e6f 00000000 00000000 000b000f  
3ffffe00:  00000000 00000000 3ffefa70 4020c47c  
3ffffe10:  3ffe8c11 3ffe861b 3ffffed8 4020aeb2  
3ffffe20:  3ffefd0c 3ffe8c48 3ffefa70 3ffe861b  
3ffffe30:  3ffe86a9 3ffe8c48 3ffefa70 402084e1  
3ffffe40:  00000000 002b002f 00000000 3ffe8974  
3ffffe50:  3ffe8970 3ffe897b 3ffe8980 00000030  
3ffffe60:  00000000 00000000 00000001 401001a8  
3ffffe70:  40100578 00000010 3fff2f80 000003f0  
3ffffe80:  0000001f 3ffefd14 00000000 4021a724  
3ffffe90:  00000000 00000000 00000000 00000001  
3ffffea0:  00000001 3ffe8cb7 00000000 00000000  
3ffffeb0:  00000000 00000001 00000001 3ffe85e8  
3ffffec0:  00000000 00000000 00000000 00000001  
3ffffed0:  00000001 3ffe8c9a 3ffe8c8f 3ffe8c84  
3ffffee0:  3fff327c 00000005 00000001 3ffe8c48  
3ffffef0:  3ffe8c7f 3ffe8c76 3fff1ea4 00000005  
3fffff00:  00000001 3ffe8c48 3ffe8d44 3ffe8c64  
3fffff10:  3fff315c 00000033 00000001 3ffe8c48  
3fffff20:  3ffe98df 3ffe8c5e 3fff3224 00000051  
3fffff30:  00000001 3ffe8c48 3ffe9717 3ffe8c51  
3fffff40:  3fff31cc 00000051 00000001 3ffe8c48  
3fffff50:  3fff313c 3fff3158 3fff3158 00000000  
3fffff60:  00f42400 83bfeac8 4010051d 00000000  
3fffff70:  00000000 3ffe8c11 0000000a 4021f65c  
3fffff80:  00000000 00000000 00000001 3fff10c4  
3fffff90:  3ffefd0c 3ffe86fc 00000000 4020881d  
3fffffa0:  3fffdad0 00000000 3fff10b0 4021f77c  
3fffffb0:  feefeffe feefeffe 3ffe873c 40100f79  
<<<stack<<<

--------------- CUT HERE FOR EXCEPTION DECODER ---------------

 ets Jan  8 2013,rst cause:2, boot mode:(3,6)

load 0x4010f000, len 3460, room 16 
tail 4
chksum 0xcc
load 0x3fff20b8, len 40, room 4 
tail 4
chksum 0xc9
csum 0xc9
v0008d530
~ld
⸮⸮Term_Step: 0.50
Term_Hist: 1.00
Creating OneWire bus for pin: 4
Initializing OneWire bus at pin 4
OneWire(pin 4) Parasite power is OFF
OneWire(pin 4) Found 0 devices:
Device address not provided. Using device from index 0
Supla - starting initialization
Storage initialization
readStorage: 8; Read: [53 55 50 4C 41 1 0 1 ]
Storage: Number of sections 1
Reading section: 0
readStorage: 7; Read: [3 F 0 0 0 0 0 ]
Section type: 3; size: 15
Validating storage state section with current device configuration
Storage state section validation completed. Loading elements state...
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Relay[0]: restored relay state: OFF
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
readStorage: 4; Read: [0 0 0 0 ]
readStorage: 1; Read: [0 ]
Channel(2) value changed to -275.0
Channel(3) value changed to 20.0
Initializing network layer
WiFi: establishing connection with SSID: ""
Using Supla protocol version 16
Current status: [5] SuplaDevice initialized
Current status: [8] No connection to network
uploaded to nodemcu
read my post from 17 Mar 2022, 17:22 https://en-forum.supla.org/viewtopic.ph ... 79#p120679
endrju761@gmail.com
Posts: 2
Joined: Wed Aug 14, 2019 8:48 am

I try it before.In boardmanager 2.74 no Littlefs.h
after install blynk i have littlefs.h
now it works...:)
thx :)
one request ..
Im looking something like "pool controler termostat" 2xds18b20 with oled.
when 1 ds is more 5 celsius like 2 relay on. When themperature are same relay off.
T1=T2+5 relay off or ... T1=T2+histereze relay off .
something like https://pool-controller.lector.dev/ with oled.
anyway big thanks
jemar
Posts: 44
Joined: Sun Apr 10, 2016 5:39 pm

Hello

I apologize in advance for any incomplete sentences.
I downloaded to ESP soft everything works best, but it keeps showing me the E5 error several times, I entered the correct svr data and passwords, but I do not want to communicate.
unnamed.jpg
unnamed.jpg (1.33 MiB) Viewed 2128 times
TheQuiet
Posts: 5
Joined: Wed Aug 05, 2020 7:41 pm

Hello, I need help. After completing the configuration, the display oled error E13, sometimes E10. What do these codes mean? What am I doing wrong?
zzrr
Posts: 343
Joined: Wed Oct 26, 2022 7:35 pm

elmaya wrote: Sun Apr 03, 2022 1:31 pm
there is something. :D

temperature from 0º to 100º in steps of 1ºC.
additional relay (Gpio 4 "D2").
3 buttons for local control.

The additional relay allows configuration as a power switch, light switch or stairs timer.

The buttons have the following functions.
Gpio 12 "D6":
ON_CLICK_1 = toggle Auto/Manual mode,
ON_CLICK_2 = toggle manual On/Off,
ON_HOLD 1 second = toggle relay 2,
ON_HOLD 10 seconds = WiFiConfig.

Gpio 14 "D5":
ON_CLICK_1 = increases the desired temperature "preset" by 1ºC,
ON_HOLD = increases successively in steps of 1ºC.

Gpio 13 "D7":
ON_CLICK_1 = decreases the desired temperature "preset" by 1ºC,
ON_HOLD = decreases successively in steps of 1ºC.


Gpio 3 "RX" = DS18B20.
Gpio 5 "D1" = thermostat relay.
Gpio 4 "D2" = additional relay.
Gpio 0 "D3" = SDA "oled".
Gpio 2 "D4" = SCL "oled".
Gpio 14 "D5" = pushbutton temp +.
Gpio 12 "D6" = mode button.
Gpio 13 "D7" = pushbutton temp -.
Gpio 15 "D8" = Led auto/man mode, connected to GND through resistor "optional".
Gpio 16 "D0" = stateLed, connected to +3.3v through resistor "optional".

Hi,
Could you please provide the source code for the same, but with regulation at least 0.5C. Super with 0.1C.
Thank you
User avatar
Dawid84
Posts: 154
Joined: Mon Jan 14, 2019 12:45 pm
Location: Piekary Śląskie

Can 2 DS sensors be connected?
Pozdrawiam
Dawid
morhan
Posts: 1
Joined: Tue Nov 01, 2022 11:16 am

hello, can you give this file as bin? I have nodemc. And I can't compile. Can you give me the file for the flash tool? thanks
https://en-forum.supla.org/viewtopic.ph ... 45#p119645
Post Reply

Return to “Ideas and concepts”