Risposte:
Per la stampa di debug, è possibile definire una macro per stampare sia il nome che il valore di una variabile come questa:
#define PRINTLN(var) Serial.print(#var ": "); Serial.println(var)
che quindi usi in questo modo:
int x = 5;
PRINTLN(x);
// Prints 'x: 5'
Anche questo è carino:
#define PRINT(var) Serial.print(#var ":\t"); Serial.print(var); Serial.print('\t')
#define PRINTLN(var) Serial.print(#var ":\t"); Serial.println(var)
se usato in un ciclo in questo modo
PRINT(x);
PRINT(y);
PRINTLN(z);
stampa un output come questo:
x: 3 y: 0.77 z: 2
x: 3 y: 0.80 z: 2
x: 3 y: 0.83 z: 2
Grazie mille per le tue risposte. Ho fatto questo ...
#define DEBUG //If you comment this line, the functions below are defined as blank lines.
#ifdef DEBUG //Macros
#define Say(var) Serial.print(#var"\t") //debug print, do not need to put text in between of double quotes
#define SayLn(var) Serial.println(#var) //debug print with new line
#define VSay(var) Serial.print(#var " =\t"); Serial.print(var);Serial.print("\t") //variable debug print
#define VSayLn(var) Serial.print(#var " =\t"); Serial.println(var) //variable debug print with new line
#else
#define Say(...) //now defines a blank line
#define SayLn(...) //now defines a blank line
#define VSay(...) //now defines a blank line
#define VSayLn(...) //now defines a blank line
#endif
if (some_condition) VSayLn(some_var);
non funzionerà come previsto. La correzione standard è #define VSayLn(var) do { Serial.print(#var " =\t"); Serial.println(var); } while (0)
. Cf Perché usare istruzioni do-while e if-else apparentemente prive di significato nelle macro?
Serial.print
.