Debug
#define BLYNK_PRINT
#define BLYNK_DEBUG
#define BLYNK_PRINT Serial // Defines the object that is used for printing
#define BLYNK_DEBUG // Optional, this enables more detailed printsSerial.begin(9600);BLYNK_LOG()
BLYNK_LOG("This is my value: %d", 10);BLYNK_LOG1("Hello World"); // Print a string
BLYNK_LOG1(10); // Print a number
BLYNK_LOG2("This is my value: ", 10); // Print 2 values
BLYNK_LOG4("Temperature: ", 24, " Humidity: ", 55); // Print 4 values
...Last updated
Was this helpful?

