Chat freely about anything...

User avatar
By Bozz
#14793 Hi Community, beginners question.
I have successfully installed the Sming Framework under Eclipse and all is working fine.
When running a few examples MQTT for example , i see a lot of serial output.
Looks this is driven by 'debugf'
Is there a way to disable this ?
User avatar
By Bozz
#14806 Solved. simple as always :P
in your init() either put Serial.systemDebugOutput to false or true.

void init()
{
Serial.systemDebugOutput(false); // Debug output to serial
....