Juntar int y string en un solo serial

Saludos alguien tiene como concatenar un string junto con un int
he tratao e juntar de este modo pero no logro juntarlos corectamente para obtener todo en un serial.println

int NUMEROS = 2323;
String LETRAS = "LOS DATOS SON";
String FIN = "DATOS COMPLETOS";

void setup() {
  Serial.begin(9600);  }

void loop() {
 
Serial.println(LETRAS + NUMEROS + FIN);
}

Tienes varias opciones
Si el String no va a cambiar puedes escribirlo directamente en el print
También puedes juntarlo todo a un String antes de hacer el print
Puedes hacer print separados y solo en el ultimo println

int NUMEROS = 2323;

void setup() {
  Serial.begin(9600);  }

void loop() {
 
Serial.println("LOS DATOS SON " + NUMEROS + " DATOS COMPLETOS");
}
String TEMP = LETRAS + " " + String(NUMEROS) + " " + FIN;
Serial.println(TEMP);
Serial.print(LETRAS + " ");
Serial.print(NUMEROS);
Serial.println(" " + FIN);

Todo lo numérico lo concatenas como ya te dijo @krnlpanic usando solo String(tipoNumero)

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.