Stampa seriale, stringa e variabile sulla stessa riga


8

Come posso stampare sul monitor seriale una stringa o solo un singolo carattere seguito da una variabile come "L 55"


Leggi i documenti di Arduino per Serial.print.
jfpoilpret il

Risposte:


10
int Var = 55;
//Do it in 2 lines e.g.
Serial.print("L ");     // String
Serial.println(Var);    // Print Variable on same line then send a line feed

1

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

1

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?
Edgar Bonet,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.