Supla ESP8266 RGBW

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

Supla Rgb Controller And Dimmer

edit: :roll:
Fixed incorrect status in the Ap after losing the connection to the cloud.

with on/off button for local control.
The function of the button is to turn off or on with the last RGB and dimer setting (if when its turnet off either from the button or the App the last state was Red 50% dimer 70% when turning on from the button it´s will return to that setting)

keep the button pressed for 10 seconds for wificonfig (green output fully on when accessing wificonfig)

Smooth transition between on/off and color change.

Pinout:
CONFIG_PIN 0 // D3 WiFiconfig
RED_PIN 14 // D5
GREEN_PIN 12 // D6
BLUE_PIN 13 // D7
BRIGHTNESS_PIN 5 // D1

Image

Code: Select all

#include <FS.h>       // ---- esp board manager 2.4.2 --- iwip Variant V2 higher Bandwidth
#include <ESP8266WiFi.h>
#define SUPLADEVICE_CPP
#include <SuplaDevice.h>
#include <DNSServer.h>
#include <WiFiManager.h> 
#include <ArduinoJson.h> //--------- https://github.com/bblanchon/ArduinoJson/tree/v5.13.2 ------
#include <EEPROM.h>
#include <ESP8266WebServer.h>
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 CONFIG_PIN 0  // WiFiconfig 
#define RED_PIN 14
#define GREEN_PIN 12
#define BLUE_PIN 13
#define BRIGHTNESS_PIN  5

char Supla_server[80];
char Location_id[15];
char Location_Pass[34];
char Supla_name[51];
char up_host[21] = "SuplaRGBW";
byte mac[6];
int C_W_state = HIGH; 
int last_C_W_state = HIGH;
unsigned long time_last_C_W_change = 0; 
long C_W_delay = 10000;                      // config delay 10 seconds           ----------        opóźnienie konfiguracji 10 sekund
int C_W_state2 = HIGH; 
long C_W_delay2 = 50;                      // button debounce
bool shouldSaveConfig = false;
bool initialConfig = false;
bool pr_wifi = true;
bool wificonfig = false;
bool state10 = true;
int s; 
unsigned long wifi_checkDelay = 20000;
unsigned long wifimilis;
unsigned long mem_milis;
unsigned char _red = 0;
unsigned char _green = 255;
unsigned char _blue = 0;
unsigned char _color_brightness = 0;
unsigned char _brightness = 0;
int _col_bright = 0;
int _bright = 0;
int bright = 0 ;
int col_bright = 0 ;
int redin = 0;
int redout = 0; 
int greenin = 0;
int greenout = 0; 
int bluein = 0;
int blueout = 0; 
int memBr;
int memCBr;
int memRed;
int memGreen;
int memBlue;
int Power_Off;

WiFiClient client;
WiFiManager wifiManager;

void saveConfigCallback () {         
  Serial.println("Should save config");
  shouldSaveConfig = true;
}
void ondemandwifiCallback () {
   wificonfig = true;
   digitalWrite(GREEN_PIN, HIGH);digitalWrite(RED_PIN, LOW);digitalWrite(BLUE_PIN, LOW);digitalWrite(BRIGHTNESS_PIN, LOW);
  WiFiManagerParameter custom_Supla_server("server", "supla server", Supla_server, 80);
  WiFiManagerParameter custom_Location_id("ID", "Location id", Location_id, 15);
  WiFiManagerParameter custom_Location_Pass("Password", "Location Pass", Location_Pass, 34);
  WiFiManagerParameter custom_Supla_name("name", "Supla Device Name", Supla_name, 51,"required");

  wifiManager.setBreakAfterConfig(true);
  wifiManager.setSaveConfigCallback(saveConfigCallback);
  
  wifiManager.addParameter(&custom_Supla_server);
  wifiManager.addParameter(&custom_Location_id);
  wifiManager.addParameter(&custom_Location_Pass);
  wifiManager.addParameter(&custom_Supla_name);

  wifiManager.setCustomHeadElement("<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>");
  wifiManager.setMinimumSignalQuality(8);
   //wifiManager.setShowStaticFields(true); // force show static ip fields
   //wifiManager.setShowDnsFields(true);    // force show dns field always
    if (!wifiManager.startConfigPortal("Supla_RGBW")) {Serial.println("Not connected to WiFi but continuing anyway.");      
    } else {Serial.println("connected...yeey :)");}    //if you get here you have connected to the WiFi}          
    strcpy(Supla_server, custom_Supla_server.getValue());
    strcpy(Location_id, custom_Location_id.getValue());
    strcpy(Location_Pass, custom_Location_Pass.getValue());
    strcpy(Supla_name, custom_Supla_name.getValue());
   
  WiFi.softAPdisconnect(true);   //  close AP
}
void supla_timer() {

  if (bright > _bright){
    _bright = _bright + 1;
    set_rgbw();
  }else if (bright < _bright){
    _bright = _bright - 1;
    set_rgbw();
  }
  if (col_bright > _col_bright){
    _col_bright = _col_bright + 1;
    set_rgbw();
  }else if (col_bright < _col_bright){
    _col_bright = _col_bright - 1;
    set_rgbw();
  } 
  if (greenin > greenout){
    greenout = greenout + 1;
    set_rgbw();
  }else if (greenin < greenout){
    greenout = greenout - 1;
    set_rgbw();
  }
  if (redin > redout){
    redout = redout + 1;
    set_rgbw();
  }else if (redin < redout){
    redout = redout - 1;
    set_rgbw();
  }
  if (bluein > blueout){
    blueout = blueout + 1;
    set_rgbw();
  }else if (bluein < blueout){
    blueout = blueout - 1;
    set_rgbw();
  } 
}
void get_rgbw_value(int channelNumber, unsigned char *red, unsigned char *green, unsigned char *blue, unsigned char *color_brightness, unsigned char *brightness) {
   *brightness = _brightness;
   *color_brightness= _color_brightness;
   *red = _red;
   *green = _green;
   *blue = _blue;
 
}
void set_rgbw() {
   
    analogWrite(BRIGHTNESS_PIN, (_bright * 1023) / 100);
    int out_br =((_col_bright * 1023) / 100);
    int out_red = map(redout, 0, 255, 0,out_br);
    analogWrite(RED_PIN, (out_red));
    int out_green = map(greenout, 0, 255, 0,out_br);
    analogWrite(GREEN_PIN, (out_green));
    int out_blue = map(blueout, 0, 255, 0,out_br);
    analogWrite(BLUE_PIN, (out_blue));
  
    mem_milis = (millis()+3000);      
}
void set_rgbw_value(int channelNumber, unsigned char red, unsigned char green, unsigned char blue, unsigned char color_brightness, unsigned char brightness) {

  if(((String(brightness).toInt()) == 0) && ((String(color_brightness).toInt()) == 0)){Power_Off = 1;}else{Power_Off = 0;}
    _brightness = brightness;
    bright = (String(_brightness).toInt()); 
    _color_brightness= color_brightness;
    col_bright = (String(_color_brightness).toInt());  
    _red = red;
    redin = (String(_red).toInt()); 
    _green = green;
    greenin = (String(green).toInt()); 
    _blue = blue;
    bluein = (String(blue).toInt());  
}
void save_epp(){
  EEPROM.write(0,memRed);EEPROM.write(1,memGreen);EEPROM.write(2,memBlue);EEPROM.write(3,memBr);EEPROM.write(4,memCBr);EEPROM.write(5,Power_Off);
  EEPROM.commit();
}
void read_epp(){
  memRed = EEPROM.read(0);memGreen = EEPROM.read(1);memBlue = EEPROM.read(2);memBr = EEPROM.read(3);memCBr = EEPROM.read(4);Power_Off = EEPROM.read(5);
  if (Power_Off == 0){
   bright = memBr;
   col_bright = memCBr;
   redin = memRed;
   greenin = memGreen;
   bluein = memBlue;
  }
}
void status_func(int status, const char *msg) {     //    ------------------------ Status --------------------------
 s=status;                                          //    -- to check if we are registered and ready before restore from memory
}
// ------------ SETUP -----------------
void setup () {

    wifi_set_sleep_type(NONE_SLEEP_T);  
    
  Serial.begin (115200);
  delay (10);
  EEPROM.begin(64);
  pinMode(CONFIG_PIN, INPUT_PULLUP);  
  analogWriteFreq(100);
  if (WiFi.SSID()==""){   
    initialConfig = true;
  } 
   
  WiFi.mode(WIFI_STA); // Force to station mode because if device was switched off while in access point mode it will start up next time in access point mode.

  Serial.println("mounting FS...");//read configuration from FS json
  if (SPIFFS.begin()) {
    Serial.println("mounted file system");
    if (SPIFFS.exists("/config.json")) {
      Serial.println("reading config file");
      File configFile = SPIFFS.open("/config.json", "r");
      if (configFile) {
        Serial.println("opened config file");
        size_t size = configFile.size();
        std::unique_ptr<char[]> buf(new char[size]);
        configFile.readBytes(buf.get(), size);
        DynamicJsonBuffer jsonBuffer;         
        JsonObject& json = jsonBuffer.parseObject(buf.get());
        json.printTo(Serial);   //print config data to serial on startup
        if (json.success()) {
          Serial.println("\nparsed json");
          strcpy(Supla_server, json["Supla_server"]);
          strcpy(Location_id, json["Location_id"]);
          strcpy(Location_Pass, json["Location_Pass"]);
          strcpy(Supla_name, json["Supla_name"]);     
        } else {
          Serial.println("failed to load json config");
          initialConfig = true;
     }  } }    
  } else {
    Serial.println("failed to mount FS");
  }

  wifi_station_set_hostname(up_host);
  
  read_epp();
  if (Power_Off == 0){_brightness = memBr;_color_brightness= memCBr; _red = memRed;_green = memGreen;_blue = memBlue;} 
  else{_brightness = 0;_color_brightness= 0; _red = memRed;_green = memGreen;_blue = memBlue;}
  SuplaDevice.setTimerFuncImpl(&supla_timer);  
  SuplaDevice.setRGBWCallbacks(&get_rgbw_value, &set_rgbw_value);
  
   uint8_t mac[WL_MAC_ADDR_LENGTH];
   WiFi.macAddress(mac);
   char GUID[SUPLA_GUID_SIZE] = {mac[WL_MAC_ADDR_LENGTH - 6], mac[WL_MAC_ADDR_LENGTH - 5], mac[WL_MAC_ADDR_LENGTH - 4], mac[WL_MAC_ADDR_LENGTH - 3],                                
                                 mac[WL_MAC_ADDR_LENGTH - 2], mac[WL_MAC_ADDR_LENGTH - 1], mac[WL_MAC_ADDR_LENGTH - 1], mac[WL_MAC_ADDR_LENGTH - 2], 
                                 mac[WL_MAC_ADDR_LENGTH - 3], mac[WL_MAC_ADDR_LENGTH - 4], mac[WL_MAC_ADDR_LENGTH - 5], mac[WL_MAC_ADDR_LENGTH - 6]};

     SuplaDevice.addRgbControllerAndDimmer ();
     SuplaDevice.setName(Supla_name);

  int LocationID = atoi(Location_id);
  SuplaDevice.begin(GUID,              
                    mac,               
                    Supla_server,      
                    LocationID,        
                    Location_Pass);    

}

// ---------------- LOOP ------------------------------ -----------------------------
void loop () {
  
  if (initialConfig == true){
      Serial.println("initial config triger");
      ondemandwifiCallback () ;
 }
  if (shouldSaveConfig == true) {
    Serial.println("saving config");
    DynamicJsonBuffer jsonBuffer;
    JsonObject& json = jsonBuffer.createObject();
    json["Supla_server"] = Supla_server;
    json["Location_id"] = Location_id;
    json["Location_Pass"] = Location_Pass;
    json["Supla_name"] = Supla_name;    
    File configFile = SPIFFS.open("/config.json", "w");
    if (!configFile) {
    Serial.println("failed to open config file for writing");
    }
    json.prettyPrintTo(Serial); //print config data to serial
    json.printTo(configFile);
    configFile.close();
    Serial.println("config saved");    
    shouldSaveConfig = false;
    initialConfig = false;
    if (wificonfig == true){ 
    WiFi.mode(WIFI_STA);   
    delay(5000);
    ESP.restart(); 
 }}
  
 if (millis() > mem_milis){
    if (EEPROM.read(5) != Power_Off){
      save_epp();
    }
    if (Power_Off == 0){
     if (((String(_brightness).toInt()) != EEPROM.read(3)) || ((String(_color_brightness).toInt()) != EEPROM.read(4)) || ((String(_red).toInt()) !=EEPROM.read(0)) || ((String(_green).toInt()) != EEPROM.read(1)) || ((String(_blue).toInt()) != EEPROM.read(2))){      
        memBr = (String(_brightness).toInt());memCBr =(String(_color_brightness).toInt());memRed =(String(_red).toInt());memGreen = (String(_green).toInt());memBlue = (String(_blue).toInt()); 
        save_epp();
     }}
     mem_milis = (millis()+3000); 
   }

  int C_W_read = digitalRead(CONFIG_PIN);{  
   if (C_W_read != last_C_W_state) {            
     time_last_C_W_change = millis();
   }
   if ((millis() - time_last_C_W_change) > C_W_delay2) {     
     if (C_W_read != C_W_state2) {     
       Serial.println("short press");
       C_W_state2 = C_W_read;       
       if (C_W_state2 == LOW) {
        if (Power_Off == 0){
         Power_Off = 1;
         _brightness = 0;
         _color_brightness = 0;
         bright = (String(_brightness).toInt()); 
         col_bright = (String(_color_brightness).toInt()); 
         SuplaDevice.channelSetRGBWvalues(0,memRed,memGreen,memBlue,0,0); // restore _color_brightness & _brightness
     }else{
        _brightness = memBr;
        _color_brightness = memCBr;
        bright = (String(_brightness).toInt());
        col_bright = (String(_color_brightness).toInt()); 
        Power_Off = 0;
        SuplaDevice.channelSetRGBWvalues(0,memRed,memGreen,memBlue,memCBr,memBr); // restore _color_brightness & _brightness
     }
     if (Power_Off){
      Serial.println("Power sate Off");
     }else{
      Serial.println("Power sate On");
     }
       }
     }
    }
   if ((millis() - time_last_C_W_change) > C_W_delay) {     
     if (C_W_read != C_W_state) {     
       Serial.println("long press");
       C_W_state = C_W_read;       
       if (C_W_state == LOW) {
        ondemandwifiCallback () ;
       }
     }
    }
   last_C_W_state = C_W_read;            
 }

 switch (s) {    //    ------------------------------------------------ Status ------------------------------------
  case 17:      // -----     STATUS_REGISTERED_AND_READY
  if (state10 == true){
     read_epp();
    if (Power_Off == 0){
       yield();
         _brightness = memBr;
         _color_brightness = memCBr;
         bright = (String(_brightness).toInt());
         col_bright = (String(_color_brightness).toInt()); 
         SuplaDevice.channelSetRGBWvalues(0,memRed,memGreen,memBlue,memCBr,memBr); // restore _color_brightness & _brightness     
    }else{
       yield();
         _brightness = 0;
         _color_brightness = 0;
         bright = (String(_brightness).toInt()); 
         col_bright = (String(_color_brightness).toInt()); 
         SuplaDevice.channelSetRGBWvalues(0,memRed,memGreen,memBlue,0,0); // off
      }      
      state10 = false; 
    } 
    break; 
   case 10:      // --------------------- REGISTER_IN_PROGRESS  ----------------------
   state10 = true; 
   break;  
 }
 
  if (WiFi.status() == WL_CONNECTED){ 
      SuplaDevice.iterate();
      delay(50);      
    if (pr_wifi == true){
     Serial.println("");
     Serial.println("CONNECTED");
     Serial.print("local IP: ");
     Serial.println(WiFi.localIP());
     Serial.print("subnetMask: ");
     Serial.println(WiFi.subnetMask());
     Serial.print("gatewayIP: ");
     Serial.println(WiFi.gatewayIP());
     long rssi = WiFi.RSSI();
     Serial.print("Signal Strength (RSSI): ");
     Serial.print(rssi);
     Serial.println(" dBm");
     pr_wifi = false;               
 }}
}
//----------------Supla.org ethernet layer --------------------------- -------------
    int supla_arduino_tcp_read(void *buf, int count) {
        _supla_int_t size = client.available();       
        if ( size > 0 ) {
            if ( size > count ) size = count;
            return client.read((uint8_t *)buf, size);
        };    
        return -1;
    };    
    int supla_arduino_tcp_write(void *buf, int count) {
        return client.write((const uint8_t *)buf, count);
    };    
    bool supla_arduino_svr_connect(const char *server, int port) {
          return client.connect(server, 2015);
    }    
    bool supla_arduino_svr_connected(void) {
          return client.connected();
    }    
    void supla_arduino_svr_disconnect(void) {
         client.stop();
    }    
    void supla_arduino_eth_setup(uint8_t mac[6], IPAddress *ip) {
    }

SuplaDeviceCallbacks supla_arduino_get_callbacks (void) {
SuplaDeviceCallbacks cb;

cb.tcp_read = & supla_arduino_tcp_read;
cb.tcp_write = & supla_arduino_tcp_write;
cb.eth_setup = & supla_arduino_eth_setup;
cb.svr_connected = & supla_arduino_svr_connected;
cb.svr_connect = & supla_arduino_svr_connect;
cb.svr_disconnect = & supla_arduino_svr_disconnect;
cb.get_temperature = NULL;
cb.get_temperature_and_humidity = NULL;
cb.get_rgbw_value = & get_rgbw_value;
cb.set_rgbw_value = & set_rgbw_value;
return cb;
}
it must be used attached Supla Device liberty as it contains changes.
RGBW.rar
Arduino & compiled firmware
(837.15 KiB) Downloaded 453 times
Last edited by elmaya on Fri Nov 15, 2019 5:34 pm, edited 1 time in total.
User avatar
Skalar
Posts: 23
Joined: Sun Sep 15, 2019 1:16 pm
Location: Wrocław

Cool :)
But there is a lack of choice to "play" with the functions of automatic color change :)

Super :)
Ale brakuje wyboru "zabawy" funkcjami automatycznej zmiany kolorów :)
elmaya
Posts: 1482
Joined: Wed Jun 27, 2018 5:48 pm
Location: El Saucejo - Sevilla

Skalar wrote: Wed Nov 13, 2019 5:49 pm Cool :)
But there is a lack of choice to "play" with the functions of automatic color change :)

Super :)
Ale brakuje wyboru "zabawy" funkcjami automatycznej zmiany kolorów :)
where in Supla have you seen the functions of automatic color change?
User avatar
Skalar
Posts: 23
Joined: Sun Sep 15, 2019 1:16 pm
Location: Wrocław

No właśnie nie widziałem a większość innych sterowników posiada wiele kombinacji


I just haven't seen it and most other drivers have many combinations :)
tecnica1
Posts: 15
Joined: Sun Dec 17, 2017 11:29 pm

Buenas tardes elmaya

Recién hoy pude probarla, genial es un lujo ahora esta aplicación.
Gracias por compartirla con todos los detalles.

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

v2 with many improvements. ;)

to avoid the slight flickering that occurs when storing the state "3 seconds after the last settings change " replace this file to improve the operation of the Pwm with Arduino Esp8266

core_esp8266_waveform.c

C:\Users\"your user name"\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\2.4.2\cores\esp8266

core_esp8266_waveform.rar
core_esp8266_waveform
(3.92 KiB) Downloaded 301 times

with on/off button for local control.
The function of the button is to turn off or on with the last RGB and dimer setting (if when its turnet off either from the button or the App the last state was Red 50% dimer 70% when turning on from the button it´s will return to that setting)

keep the button pressed for 10 seconds for wificonfig (green output fully on when accessing wificonfig)

Smooth transition between on/off and color change.

Pinout:
CONFIG_PIN 0 // D3 WiFiconfig
RED_PIN 14 // D5
GREEN_PIN 12 // D6
BLUE_PIN 13 // D7
BRIGHTNESS_PIN 5 // D1

Image

Code: Select all

#include <FS.h>       // ---- esp board manager 2.4.2 --- iwip Variant V2 higher Bandwidth
#include <ESP8266WiFi.h>
#define SUPLADEVICE_CPP
#include <SuplaDevice.h>
#include <DNSServer.h>
#include <WiFiManager.h> 
#include <ArduinoJson.h> //--------- https://github.com/bblanchon/ArduinoJson/tree/v5.13.2 ------
#include <EEPROM.h>
#include <ESP8266WebServer.h>
extern "C"
{
#include "user_interface.h"
}

WiFiEventHandler gotIpEventHandler, disconnectedEventHandler;
//#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 CONFIG_PIN 0  // WiFiconfig 
#define RED_PIN 14
#define GREEN_PIN 12
#define BLUE_PIN 13
#define BRIGHTNESS_PIN  5

char Supla_server[80];
char Location_id[15];
char Location_Pass[34];
char Supla_name[51];
char up_host[21] = "SuplaRGBW_v2";
byte mac[6];
int C_W_state = HIGH; 
int last_C_W_state = HIGH;
unsigned long time_last_C_W_change = 0; 
long C_W_delay = 10000;                      // config delay 10 seconds           ----------        opóźnienie konfiguracji 10 sekund
int C_W_state2 = HIGH; 
long C_W_delay2 = 50;                      // button debounce
bool shouldSaveConfig = false;
bool initialConfig = false;
bool wifi_ok = false;
bool wificonfig = false;
bool state10 = true;
int s; 
unsigned long mem_milis;
unsigned char _red = 0;
unsigned char _green = 255;
unsigned char _blue = 0;
unsigned char _color_brightness = 0;
unsigned char _brightness = 0;
int _col_bright = 0;
int _bright = 0;
int bright = 0 ;
int col_bright = 0 ;
int redin = 0;
int redout = 0; 
int greenin = 0;
int greenout = 0; 
int bluein = 0;
int blueout = 0; 
int memBr;
int memCBr;
int memRed;
int memGreen;
int memBlue;
int Power_Off;

WiFiClient client;
WiFiManager wifiManager;

void saveConfigCallback () {         
  Serial.println("Should save config");
  shouldSaveConfig = true;
}
void ondemandwifiCallback () {
   wificonfig = true;
   digitalWrite(GREEN_PIN, HIGH);digitalWrite(RED_PIN, LOW);digitalWrite(BLUE_PIN, LOW);digitalWrite(BRIGHTNESS_PIN, LOW);
  WiFiManagerParameter custom_Supla_server("server", "supla server", Supla_server, 80);
  WiFiManagerParameter custom_Location_id("ID", "Location id", Location_id, 15);
  WiFiManagerParameter custom_Location_Pass("Password", "Location Pass", Location_Pass, 34);
  WiFiManagerParameter custom_Supla_name("name", "Supla Device Name", Supla_name, 51,"required");

  wifiManager.setBreakAfterConfig(true);
  wifiManager.setSaveConfigCallback(saveConfigCallback);
  
  wifiManager.addParameter(&custom_Supla_server);
  wifiManager.addParameter(&custom_Location_id);
  wifiManager.addParameter(&custom_Location_Pass);
  wifiManager.addParameter(&custom_Supla_name);

  wifiManager.setCustomHeadElement("<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>");
  wifiManager.setMinimumSignalQuality(8);
   //wifiManager.setShowStaticFields(true); // force show static ip fields
   //wifiManager.setShowDnsFields(true);    // force show dns field always
    if (!wifiManager.startConfigPortal("Supla_RGBW")) {Serial.println("Not connected to WiFi but continuing anyway.");      
    } else {Serial.println("connected...yeey :)");}    //if you get here you have connected to the WiFi}          
    strcpy(Supla_server, custom_Supla_server.getValue());
    strcpy(Location_id, custom_Location_id.getValue());
    strcpy(Location_Pass, custom_Location_Pass.getValue());
    strcpy(Supla_name, custom_Supla_name.getValue());
   
  WiFi.softAPdisconnect(true);   //  close AP
}
void set_pin(){
  digitalWrite(RED_PIN, 0);
  digitalWrite(GREEN_PIN, 0);
  digitalWrite(BLUE_PIN, 0);
  digitalWrite(BRIGHTNESS_PIN, 0);
  pinMode(RED_PIN, OUTPUT);
  pinMode(GREEN_PIN, OUTPUT);
  pinMode(BLUE_PIN, OUTPUT);
  pinMode(BRIGHTNESS_PIN, OUTPUT);
  analogWrite(RED_PIN, 0);
  analogWrite(GREEN_PIN, 0);
  analogWrite(BLUE_PIN, 0);
  analogWrite(BRIGHTNESS_PIN, 0);
}
void supla_timer() {

  if (bright > _bright){
    _bright = _bright + 1;
    set_rgbw();
  }else if (bright < _bright){
    _bright = _bright - 1;
    set_rgbw();
  }
  if (col_bright > _col_bright){
    _col_bright = _col_bright + 1;
    set_rgbw();
  }else if (col_bright < _col_bright){
    _col_bright = _col_bright - 1;
    set_rgbw();
  } 
  if (greenin > greenout){
    greenout = greenout + 1;
    set_rgbw();
  }else if (greenin < greenout){
    greenout = greenout - 1;
    set_rgbw();
  }
  if (redin > redout){
    redout = redout + 1;
    set_rgbw();
  }else if (redin < redout){
    redout = redout - 1;
    set_rgbw();
  }
  if (bluein > blueout){
    blueout = blueout + 1;
    set_rgbw();
  }else if (bluein < blueout){
    blueout = blueout - 1;
    set_rgbw();
  } 
}
void get_rgbw_value(int channelNumber, unsigned char *red, unsigned char *green, unsigned char *blue, unsigned char *color_brightness, unsigned char *brightness) {
   *brightness = _brightness;
   *color_brightness= _color_brightness;
   *red = _red;
   *green = _green;
   *blue = _blue;
 
}
void set_rgbw() {
   
    analogWrite(BRIGHTNESS_PIN, (_bright * 1023) / 100);
    int out_br =((_col_bright * 1023) / 100);
    int out_red = map(redout, 0, 255, 0,out_br);
    analogWrite(RED_PIN, (out_red));
    int out_green = map(greenout, 0, 255, 0,out_br);
    analogWrite(GREEN_PIN, (out_green));
    int out_blue = map(blueout, 0, 255, 0,out_br);
    analogWrite(BLUE_PIN, (out_blue));
  
    mem_milis = (millis()+3000);      
}
void set_rgbw_value(int channelNumber, unsigned char red, unsigned char green, unsigned char blue, unsigned char color_brightness, unsigned char brightness) {

  if(((String(brightness).toInt()) == 0) && ((String(color_brightness).toInt()) == 0)){Power_Off = 1;}else{Power_Off = 0;}
    _brightness = brightness;
    bright = (String(_brightness).toInt()); 
    _color_brightness= color_brightness;
    col_bright = (String(_color_brightness).toInt());  
    _red = red;
    redin = (String(_red).toInt()); 
    _green = green;
    greenin = (String(green).toInt()); 
    _blue = blue;
    bluein = (String(blue).toInt());  
}
void save_epp(){
  EEPROM.write(0,memRed);EEPROM.write(1,memGreen);EEPROM.write(2,memBlue);EEPROM.write(3,memBr);EEPROM.write(4,memCBr);EEPROM.write(5,Power_Off);
  EEPROM.commit();
}
void read_epp(){
  memRed = EEPROM.read(0);memGreen = EEPROM.read(1);memBlue = EEPROM.read(2);memBr = EEPROM.read(3);memCBr = EEPROM.read(4);Power_Off = EEPROM.read(5);
  if (Power_Off == 0){
   bright = memBr;
   col_bright = memCBr;
   redin = memRed;
   greenin = memGreen;
   bluein = memBlue;
  }
}
void status_func(int status, const char *msg) {     //    ------------------------ Status --------------------------
 s=status;                                          //    -- to check if we are registered and ready before restore from memory
}
// ------------ SETUP -----------------
void setup () {

    wifi_set_sleep_type(NONE_SLEEP_T);  
    
  Serial.begin (115200);
  delay (10);
  set_pin();
  EEPROM.begin(64);
  pinMode(CONFIG_PIN, INPUT_PULLUP);  
  analogWriteFreq(100);
  if (WiFi.SSID()==""){   
    initialConfig = true;
  } 
  gotIpEventHandler = WiFi.onStationModeGotIP([](const WiFiEventStationModeGotIP& event){
     Serial.println("");
     Serial.println("CONNECTED");
     Serial.print("local IP: "); Serial.println(WiFi.localIP());     
     Serial.print("subnetMask: "); Serial.println(WiFi.subnetMask());    
     Serial.print("gatewayIP: "); Serial.println(WiFi.gatewayIP());    
     long rssi = WiFi.RSSI(); Serial.print("Signal Strength (RSSI): "); Serial.print(rssi); Serial.println(" dBm");        
     wifi_ok = true; 
  });

  disconnectedEventHandler = WiFi.onStationModeDisconnected([](const WiFiEventStationModeDisconnected& event){  
    Serial.println("Station disconnected");
    wifi_ok = false;
  });

  WiFi.mode(WIFI_STA); // Force to station mode because if device was switched off while in access point mode it will start up next time in access point mode.

  Serial.println("mounting FS...");//read configuration from FS json
  if (SPIFFS.begin()) {
    Serial.println("mounted file system");
    if (SPIFFS.exists("/config.json")) {
      Serial.println("reading config file");
      File configFile = SPIFFS.open("/config.json", "r");
      if (configFile) {
        Serial.println("opened config file");
        size_t size = configFile.size();
        std::unique_ptr<char[]> buf(new char[size]);
        configFile.readBytes(buf.get(), size);
        DynamicJsonBuffer jsonBuffer;         
        JsonObject& json = jsonBuffer.parseObject(buf.get());
        json.printTo(Serial);   //print config data to serial on startup
        if (json.success()) {
          Serial.println("\nparsed json");
          strcpy(Supla_server, json["Supla_server"]);
          strcpy(Location_id, json["Location_id"]);
          strcpy(Location_Pass, json["Location_Pass"]);
          strcpy(Supla_name, json["Supla_name"]);     
        } else {
          Serial.println("failed to load json config");
          initialConfig = true;
     }  } }    
  } else {
    Serial.println("failed to mount FS");
  }

  wifi_station_set_hostname(up_host);
  
  read_epp();
  if (Power_Off == 0){_brightness = memBr;_color_brightness= memCBr; _red = memRed;_green = memGreen;_blue = memBlue;} 
  else{_brightness = 0;_color_brightness= 0; _red = memRed;_green = memGreen;_blue = memBlue;}
  SuplaDevice.setTimerFuncImpl(&supla_timer);  
  SuplaDevice.setRGBWCallbacks(&get_rgbw_value, &set_rgbw_value);
  SuplaDevice.setStatusFuncImpl(&status_func);
  
   uint8_t mac[WL_MAC_ADDR_LENGTH];
   WiFi.macAddress(mac);
   char GUID[SUPLA_GUID_SIZE] = {mac[WL_MAC_ADDR_LENGTH - 6], mac[WL_MAC_ADDR_LENGTH - 5], mac[WL_MAC_ADDR_LENGTH - 4], mac[WL_MAC_ADDR_LENGTH - 3],                                
                                 mac[WL_MAC_ADDR_LENGTH - 2], mac[WL_MAC_ADDR_LENGTH - 1], mac[WL_MAC_ADDR_LENGTH - 1], mac[WL_MAC_ADDR_LENGTH - 2], 
                                 mac[WL_MAC_ADDR_LENGTH - 3], mac[WL_MAC_ADDR_LENGTH - 4], mac[WL_MAC_ADDR_LENGTH - 5], mac[WL_MAC_ADDR_LENGTH - 6]};

     SuplaDevice.addRgbControllerAndDimmer ();
     SuplaDevice.setName(Supla_name);
     int LocationID = atoi(Location_id);
     SuplaDevice.begin(GUID,              
                    mac,               
                    Supla_server,      
                    LocationID,        
                    Location_Pass);    

}

// ---------------- LOOP ------------------------------ -----------------------------
void loop () {
  
  if (initialConfig == true){
      Serial.println("initial config triger");
      ondemandwifiCallback () ;
 }
  if (shouldSaveConfig == true) {
    Serial.println("saving config");
    DynamicJsonBuffer jsonBuffer;
    JsonObject& json = jsonBuffer.createObject();
    json["Supla_server"] = Supla_server;
    json["Location_id"] = Location_id;
    json["Location_Pass"] = Location_Pass;
    json["Supla_name"] = Supla_name;    
    File configFile = SPIFFS.open("/config.json", "w");
    if (!configFile) {Serial.println("failed to open config file for writing");}   
    json.prettyPrintTo(Serial); //print config data to serial
    json.printTo(configFile);
    configFile.close();
    Serial.println("config saved");    
    shouldSaveConfig = false;
    initialConfig = false;
    if (wificonfig == true){ 
    WiFi.mode(WIFI_STA);   
    delay(5000);
    ESP.restart(); 
 }}
  
 if (millis() > mem_milis){
    if (EEPROM.read(5) != Power_Off){
      save_epp();
    }
    if (Power_Off == 0){
     if (((String(_brightness).toInt()) != EEPROM.read(3)) || ((String(_color_brightness).toInt()) != EEPROM.read(4)) || ((String(_red).toInt()) !=EEPROM.read(0)) || ((String(_green).toInt()) != EEPROM.read(1)) || ((String(_blue).toInt()) != EEPROM.read(2))){      
        memBr = (String(_brightness).toInt());memCBr =(String(_color_brightness).toInt());memRed =(String(_red).toInt());memGreen = (String(_green).toInt());memBlue = (String(_blue).toInt()); 
        save_epp();
     }}
     mem_milis = (millis()+3000); 
   }

  int C_W_read = digitalRead(CONFIG_PIN);{  
   if (C_W_read != last_C_W_state) {            
     time_last_C_W_change = millis();
   }
   if ((millis() - time_last_C_W_change) > C_W_delay2) {     
     if (C_W_read != C_W_state2) {     
       Serial.println("short press");
       C_W_state2 = C_W_read;       
       if (C_W_state2 == LOW) {
        if (Power_Off == 0){
         Power_Off = 1;
         _brightness = 0;
         _color_brightness = 0;
         bright = (String(_brightness).toInt()); 
         col_bright = (String(_color_brightness).toInt()); 
         SuplaDevice.RGBchannelValueChanged(0,memRed,memGreen,memBlue,0,0); // off _brightness 
     }else{
        _brightness = memBr;
        _color_brightness = memCBr;
        bright = (String(_brightness).toInt());
        col_bright = (String(_color_brightness).toInt()); 
        Power_Off = 0;
        SuplaDevice.RGBchannelValueChanged(0,memRed,memGreen,memBlue,memCBr,memBr); // restore _color_brightness & _brightness
     }
     if (Power_Off){
      Serial.println("Power sate Off");
     }else{
      Serial.println("Power sate On");
     }
       }
     }
    }
   if ((millis() - time_last_C_W_change) > C_W_delay) {     
     if (C_W_read != C_W_state) {     
       Serial.println("long press");
       C_W_state = C_W_read;       
       if (C_W_state == LOW) {
        ondemandwifiCallback () ;
       }
     }
    }
   last_C_W_state = C_W_read;            
 }
 
 switch (s) {    //    ------------------------------------------------ Status ------------------------------------
  case 17:      // -----     STATUS_REGISTERED_AND_READY
  if (state10 == true){
    if (Power_Off){
      SuplaDevice.RGBchannelValueChanged(0,memRed,memGreen,memBlue,0,0); // off _brightness
    }else{
      SuplaDevice.RGBchannelValueChanged(0,memRed,memGreen,memBlue,memCBr,memBr); // restore _color_brightness & _brightness
    }
   state10 = false; 
    } 
    break; 
    case 10:      // --------------------- REGISTER_IN_PROGRESS  ----------------------
    state10 = true; 
    break;
   
  }     
  if (wifi_ok){
     SuplaDevice.iterate();
      delay(50);
  }                
}
//----------------Supla.org ethernet layer --------------------------- -------------
    int supla_arduino_tcp_read(void *buf, int count) {
        _supla_int_t size = client.available();       
        if ( size > 0 ) {
            if ( size > count ) size = count;
            return client.read((uint8_t *)buf, size);
        };    
        return -1;
    };    
    int supla_arduino_tcp_write(void *buf, int count) {
        return client.write((const uint8_t *)buf, count);
    };    
    bool supla_arduino_svr_connect(const char *server, int port) {
          return client.connect(server, 2015);
    }    
    bool supla_arduino_svr_connected(void) {
          return client.connected();
    }    
    void supla_arduino_svr_disconnect(void) {
         client.stop();
    }    
    void supla_arduino_eth_setup(uint8_t mac[6], IPAddress *ip) {
    }

SuplaDeviceCallbacks supla_arduino_get_callbacks (void) {
SuplaDeviceCallbacks cb;

cb.tcp_read = & supla_arduino_tcp_read;
cb.tcp_write = & supla_arduino_tcp_write;
cb.eth_setup = & supla_arduino_eth_setup;
cb.svr_connected = & supla_arduino_svr_connected;
cb.svr_connect = & supla_arduino_svr_connect;
cb.svr_disconnect = & supla_arduino_svr_disconnect;
cb.get_temperature = NULL;
cb.get_temperature_and_humidity = NULL;
cb.get_rgbw_value = & get_rgbw_value;
cb.set_rgbw_value = & set_rgbw_value;
return cb;
}
it must be used attached Supla Device liberty as it contains changes.
RGBW_v2.rar
Aduino & libraries
(594.8 KiB) Downloaded 354 times
RGBW_v2_DOUT_16Mbit.rar
compiled firmware
(250.3 KiB) Downloaded 354 times
Last edited by elmaya on Sun Nov 24, 2019 7:23 pm, edited 1 time in total.
User avatar
wojtas567
Posts: 2209
Joined: Sun Apr 03, 2016 7:16 pm
Location: Olsztyn

Hi
do I have this error during compilation?
exit status 1
'class SuplaDeviceClass' has no member named 'RGBchannelValueChanged'
Pozdrawiam
Wojtek
elmaya
Posts: 1482
Joined: Wed Jun 27, 2018 5:48 pm
Location: El Saucejo - Sevilla

wojtas567 wrote: Sun Nov 24, 2019 7:03 pm Hi
do I have this error during compilation?
exit status 1
'class SuplaDeviceClass' has no member named 'RGBchannelValueChanged'
it must be used attached Supla Device liberty as it contains changes. ;)
User avatar
wojtas567
Posts: 2209
Joined: Sun Apr 03, 2016 7:16 pm
Location: Olsztyn

I didn't notice that to the library :)
Pozdrawiam
Wojtek
jaku2k
Posts: 830
Joined: Sun May 24, 2020 8:40 pm
Contact:

Thank you @elmaya! Amazing project (especially before christmas). I used ttp233 as a "button" (in fact it's more like touch button) and hooked up as in your example through pc817 opto-isolator (stolen from dead yunshan module :lol: ). The effect is amazing (I like the smooth transition between colors). Link to the photos of my lamp (for posterity ;-]): https://drive.google.com/drive/folders/ ... sp=sharing

Dziękuję @elmaya. Wspaniały projekt (szczególnie w przedświątecznym okresie). Użyłem ttp223 jako guzika (tak naprawdę jest to czujnik dotykowy) i podłączyłem tak jak w Twoim schemacie przez transoptor pc817 (wyciągnięty z martwego yunshana :lol: ). Efekt jest powalający (bardzo podoba mi się efekt przejścia między kolorami). Link do zdjęć mojej lampki (dla potomnych :-]): https://drive.google.com/drive/folders/ ... sp=sharing

Regards,
Jakub

Pozdrawiam,
Jakub

PS. The yellow dot in the middle helps localizing the ttp223 position (it's not needed). The button on the back is "in case of emergency" - if the main ttp223 breaks.

PS. Żółtka kropka po środku ułatwia zlokalizowanie ttp223. Nie jest potrzebna do prawidłowego działania (to jedynie naklejka). Guzik na tyle jest na wszelki wypadek - gdyby ttp223 odmówiło posłuszeństwa.
Pozdrawiam
Jakub

PS. Czekam na Supla Offline Party 2024
Post Reply

Return to “Ideas and concepts”