computourist/ESP8266-MQTT-client

Wasted SRAM

jimmys01 opened this issue · 1 comments

Statments as
Serial.println("connected");
can be
Serial.println(F("connected"));
and do some major savings in SRAM for the arduino..

I presume you know that?

Anyway THANKS for your code is AWSOME and it works!

Hi Jimmys01,

Thanks for the hint. In my final code (ESP_SONOFF_12-code) the line printing is only done for debugging. Since I have not have had memory limitations I did not look into this.