So i have my project and i want to increase the email size
...
#include <EEPROM.h>
#include <SimpleTimer.h> // MUDOU ITEM PARA CRIAR TEMPOS DE EXECUÇÂO
//#define BLYNK_DEBUG
#define BLYNK_MAX_SENDBYTES 256
#define BLYNK_PRINT Serial
...
and my BLYNK_MAX_SENDBYTES is always set back to 128 :
C:\Program Files (x86)\Arduino\libraries\Blynk/Blynk/BlynkConfig.h:52:0: note: this is the location of the previous definition
#define BLYNK_MAX_SENDBYTES 128
^
and i ran some tests and that warning did not showed up, still Blynk did not send my large messages but my small messages work fine
the program behaved as if BLYNK_MAX_SENDBYTES was set to 128
This is the full warning:
C:\Users\caous\Desktop\Programas de Desenvolvimento\ArduÃno\PROJETOS\Projeto_Casa_Inteligente_QuadroDeLuz\Projeto_Casa_Inteligente_QuadroDeLuz.ino:10:0: warning: "BLYNK_MAX_SENDBYTES" redefined [enabled by default]
In file included from C:\Program Files (x86)\Arduino\libraries\Blynk/Blynk/BlynkApi.h:14:0,
from C:\Program Files (x86)\Arduino\libraries\Blynk/BlynkApiArduino.h:14,
from C:\Program Files (x86)\Arduino\libraries\Blynk/BlynkSimpleShieldEsp8266_HardSer.h:27,
from C:\Users\caous\Desktop\Programas de Desenvolvimento\ArduÃno\PROJETOS\Projeto_Casa_Inteligente_QuadroDeLuz\Projeto_Casa_Inteligente_QuadroDeLuz.ino:4:
C:\Program Files (x86)\Arduino\libraries\Blynk/Blynk/BlynkConfig.h:52:0: note: this is the location of the previous definition
#define BLYNK_MAX_SENDBYTES 128
^