[Risolto] Serial.print(?);

eccomi qui dopo aver tirato qualche testata al monitor

int c = 7100000;

void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
Serial.print("FA00007100000;");
}

void loop() {

// converting a constant string into a String object:
String stringTwo = String("FA0000");
String stringTree = String(c);
// concatenating two strings:
String stringOne = String(stringTwo + stringTree + ";");
// prints "This is a string with more":
Serial.println(stringOne);

// do nothing while true:
while(true);

}

mi restituisce un valore finale strano non corrisponde a quello che voglio io ma cmq ora il codice funziona e il programma risponde